9eFish - 带有 JQuery 标签的文章
1
臭虫

Cutting Edge - Predictive Fetch with jQuery and the ASP.NET Ajax Library

adminadmin 发表于 11 小时, 50 分钟 之前
Friday, March 12, 2010 2:47:43 AM GMT
Last month I discussed the implementation of master-detail views using the new features coming with the ASP.NET Ajax Library. The list of new features includes a syntax for client-side live data binding and a rich rendering component, exemplified by the DataView client control. By putting these features together, you can easily build nested views to represent one-to-many data relationships. In the ASP.NET Ajax Library, the mechanics of master-detail views are largely defined in the logic of the DataVi... (more)
类别: UX | 点击: 0 | 评论 | | 源: msdn.microsoft.com
标签: ajax, JQuery, ms ajax
1
臭虫

Shawn Wildermuth - WCF Data Services and jQuery

xgluxvxgluxv 发表于 16 天, 8 小时, 38 分钟 之前
Thursday, March 04, 2010 3:48:56 PM GMT Wednesday, February 24, 2010 5:59:39 AM GMT
WCF Data Services and jQuery URL: http://wildermuth.com/downloads/dataservicejque... I'd recently been asked by Chris Sells to help him with a simple WCF Data Services/jQuery example so I thought I'd share it via my blog as well. The basic idea is to use jQuery's AJAX functionality to retrieve JSON instead of the usual OData and consume it on a web page. The example I decided on using is to expose the XBox database with paging. I am not doing any of the niceties like getting result counts ... (more)
类别: Foundation | 点击: 0 | 评论 | | 源: wildermuth.com
标签: JQuery, WCF
1
臭虫

Using FullCalendar jQuery component with ASP.NET MVC

gpeipmangpeipman 发表于 36 天, 21 小时, 3 分钟 之前
Thursday, February 11, 2010 2:04:41 AM GMT Wednesday, February 03, 2010 5:35:30 PM GMT
I found very good jQuery component called FullCalendar. My special favorites are agenda views because they make this calendar really useful in business applications. In this posting I will show you how to use FullCalendar with ASP.NET MVC. (more)
类别: Web Form | 点击: 1 | 评论 | | 源: weblogs.asp.net
标签: asp.net, fullcalendar, JQuery, MVC
1
臭虫

Linking jQueryUI DatePicker and FullCalendar

gpeipmangpeipman 发表于 38 天, 3 小时, 42 分钟 之前
Thursday, February 11, 2010 2:04:41 AM GMT Tuesday, February 02, 2010 10:55:56 AM GMT
In one of my sample projects I wrote simple calendar solution. Users can select dates from calendar and see what events they have on selected days. I used jQueryUI DatePicker and FullCalendar components. In this posting I will show you how to link them together. (more)
类别: Web Form | 点击: 3 | 评论 | | 源: weblogs.asp.net
标签: datepicker, fullcalendar, JQuery, JQuery UI
1
臭虫

Implementing a jQuery Modal Window in ASP.NET : Misfit Geek

adminadmin 发表于 48 天, 23 小时, 24 分钟 之前
Monday, February 01, 2010 6:49:34 AM GMT Friday, January 22, 2010 3:13:54 PM GMT
I’ve recently had several questions about attempts to use the Ajax Control Toolkit’s Modal Dialog, or more accurately, to misuse it, as a window. It’s a “dialog” and therefore not well suited to being used for receiving data from the user. Controls like the Modal Dialog Extender Control are convenient when they do when we want them to do but when they don’t there is no reason not to “roll our own” functionality. In this case I’ve built a sample using jQuery to display a Semi-Modal Window to allow the ... (more)
类别: UX | 点击: 0 | 评论 | | 源: misfitgeek.com
标签: JQuery
1
臭虫

jQuery 1.4 Released: The 15 New Features you Must Know | Nettuts+

xgluxvxgluxv 发表于 53 天, 11 小时, 58 分钟 之前
Wednesday, January 27, 2010 1:13:57 PM GMT Monday, January 18, 2010 2:40:15 AM GMT
jQuery 1.4 Released: The 15 New Features you Must KnowJan 14th, 2010 in JavaScript & AJAX by James Padolsey jQuery 1.4 was recently released. This wasn't simply a maintenance release as some had speculated; there are many new features, enhancements and performance improvements included in 1.4! This post covers the new features and enhancements that you may find beneficial. You can download jQuery 1.4 right now, here: http://code.jquery.com/jquery-1.4.jsAuthor: James Padolsey I'm a freelance web de... (more)
类别: UX | 点击: 1 | 评论 | | 源: net.tutsplus.com
标签: JQuery
1
臭虫

Sending and Receiving JSON between jQuery and ASP.NET MVC using Ajax. « Philip Hendry's Blog

adminadmin 发表于 73 天, 9 小时, 15 分钟 之前
Wednesday, January 06, 2010 1:44:07 AM GMT Tuesday, December 29, 2009 5:22:41 AM GMT
December 22, 2009Sending and Receiving JSON between jQuery and ASP.NET MVC using Ajax.Filed under: ASP.NET MVC, jQuery — philiphendry @ 9:17 pm It’s taken me a while to get this working without any problems so it’s worth jotting down how it all works. I don’t think I was trying to do anything particularly difficult – just receive Json from an ASP.NET MVC application using jQuery then submitted but the APIs had to be coerced into just the correct way to get it functional.Receiving Json from ASP.NET MV... (more)
类别: Web Form | 点击: 1 | 评论 | | 源: philiphendry.wordpress.com
标签: asp.net mvc, JQuery
1
臭虫

jQuery制作动态酷效果总结 - 深山老林 - 博客园

xgluxvxgluxv 发表于 74 天, 11 小时, 20 分钟 之前
Wednesday, January 06, 2010 1:44:07 AM GMT Monday, December 28, 2009 3:17:50 AM GMT
jQuery制作动态酷效果总结 jQuery是一个优秀的JavaScript框架,可以很好的解决不同浏览器兼容的问题,尤其是在ASP.NET MVC下,它的作用更加的凸显。 jQuery在制作动态酷效果的时候有很强的优势,以下是笔者总结的一些最常用到的方法。   1.修改内联CSS jQyery提供.css()方法来供我们获取或修改内联的css .css()方法能够接收的参数由两种,一种是为它单独传递一个单独的样式属性和值,另一种是为它传递一个由“属性-值”对构成的映射: .css('property','value'); .css({'property1':'value1','property-2':'value2'}); 一般来说,数字值不需要加引号,而字符串值需要加引号。但是,当使用映射表示法时,如果属性名使用驼峰大小写形式的DOM表示法,则可以省略引号。   2.基本的隐藏和显示,不带动画效果   .hide() .show() 这两个方法的作用就是立即隐藏或显示匹配的元素集合。   3.指定显示速度的隐藏和显示   在.hide()和... (more)
类别: UX | 点击: 2 | 评论 | | 源: www.cnblogs.com
标签: JQuery
1
臭虫

Organizing Javascript for Event Pooling with jQuery

adminadmin 发表于 79 天, 12 小时, 15 分钟 之前
Tuesday, December 29, 2009 12:10:55 PM GMT Wednesday, December 23, 2009 2:23:30 AM GMT
« Help Your Business Be A Technology CompanyOrganizing Javascript for Event Pooling with jQueryPublishedbyMichaelonDecember 20, 2009inProgramming.1 CommentTags: designpatterns, jquery. It turns out my most popular article of the past year was Event Pooling with jQuery’s Bind and Trigger.  I wanted to write a follow up article taking this approach one step further by discussing how to logically organize the relationship between binders and triggers on a javascript heavy UI.  It’s important to properly de... (more)
类别: UX | 点击: 0 | 评论 | | 源: www.michaelhamrah.com
标签: Event Pooling, JQuery
1
臭虫

Event Pooling with jQuery Using Bind and Trigger: Managing Complex Javascript

adminadmin 发表于 79 天, 12 小时, 16 分钟 之前
Tuesday, December 29, 2009 12:10:55 PM GMT Wednesday, December 23, 2009 2:22:24 AM GMT
As everyone knows, the more dependencies you have in a system, the harder maintaining that system is. Javascript is no exception- and orchestrating actions across complex user interfaces can be a nightmare if not done properly. Luckily, there’s a great pattern for orchestrating complex interaction in a disconnected way. No, it’s not the Observer pattern. It’s a take on the Observer pattern called Event Pooling which is a piece of cake with jQuery’s bind and trigger functions. For the get to the cod... (more)
类别: UX | 点击: 0 | 评论 | | 源: www.michaelhamrah.com
标签: designpatterns, JQuery
1
臭虫

.NET - 20 Must Read ASP.NET, MVC, jQuery and Silverlight articles on DotNetCurry – 2009

adminadmin 发表于 85 天, 22 小时, 30 分钟 之前
Thursday, December 24, 2009 3:22:02 AM GMT Wednesday, December 16, 2009 4:07:38 PM GMT
Web technologies have become enormously popular. The authors at DotNetCurry acknowledge this fact and continue working hard to deliver articles, how-to, tips and techniques around Microsoft Web and related technologies. This post contains 20 Must Read articles that were published in the year 2009 and focus around web technologies like ASP.NET, MVC, jQuery and Silverlight. These articles have been selected based on viewership, comments and user rating. Featured Authors include Malcolm Sheridan, Suprotim A... (more)
类别: Architecture | 点击: 1 | 评论 | | 源: www.dotnetcurry.com
标签: asp.net mvc, JQuery, Silverlight
1
臭虫

Use jQuery to Scroll Just In Time

adminadmin 发表于 103 天, 9 小时, 14 分钟 之前
Tuesday, December 08, 2009 4:20:19 PM GMT Sunday, November 29, 2009 5:24:06 AM GMT
Search the ArchivesHanalei, Hawaii 11/29/2009433 Posts and CountingPaging Records Sucks – Use jQuery to Scroll Just In Time Friday, November 27, 2009 - One of the really cool things I like about Bing is its image search – you can search on something and keep scrolling forever without once hitting the annoying “next page >>” fail pattern. Why do I call this a “fail pattern”? Because we know better by now – we know that people rarely go to pages 2- whatever and that when they do, they rarely come back ... (more)
类别: UX | 点击: 2 | 评论 | | 源: blog.wekeroad.com
标签: JQuery, Scroll Just In Time
1
臭虫

了解jQuery技巧来提高你的代码-jQuery框架教程 | 彬Go

adminadmin 发表于 108 天, 11 小时, 6 分钟 之前
Wednesday, December 02, 2009 3:09:33 AM GMT Tuesday, November 24, 2009 3:32:12 AM GMT
彬Go 关注前端开发/网页设计/网站可用性/用户体验,暴风彬彬的趣味互联网生活…首页关于暴风彬彬网站地图了解jQuery技巧来提高你的代码2009年11月23日 | 暴风彬彬 上一篇:你需要了解的21个CSS惊人技巧 «下一篇:   jQuery之所以如此流行并被从大公司到个人博客的几乎每个人都广泛使用,是因为它上手和使用相当简单,而且为我们提供了一些人都不知道的相当棒的特性。我认为jQuery的大多数用户更趋向于使用jQuery插件来解决面临的难题,这通常是明智的选择。但是当插件相对于你的需求有一定缺陷的时候,你也许更应该想办法自己来解决,下面来看看这些实用的jQuery技巧,他们肯定会能够派上用场的! 您还可以参考以下JavaScript相关教程及资源: 《10种JavaScript特效实例让你的网站更吸引人》 《300+Jquery, CSS, MooTools 和 JS的导航菜单资源》 《10个非常棒的Ajax及Javascript实例资源网站》 《推荐9款很棒的网页绘制图表JavaScript框架脚本》1.测试并提升你的jQuery选择器水平   这个... (more)
类别: UX | 点击: 7 | 评论 | | 源: blog.bingo929.com
标签: JQuery
1
臭虫

CodeProject: Saving ASP.Net Form Data with jQuery AJAX and JSON Parser. Free source code and programming help

adminadmin 发表于 135 天, 8 小时, 55 分钟 之前
Friday, November 06, 2009 8:16:49 AM GMT Wednesday, October 28, 2009 5:42:52 AM GMT
Download SavingDataWithjQueryAjaxAndJSON_Source - 315.15 KBIntroduction I came forth to write this down because of my own frustration of having hard time to find good sample codes to get me to where I wanted. Basically, I wanted my asp.net page where I had a form for entering expense item to do the following: When I clicked on a Save button on the form, I did not want post back as the post back would mess up with something on the form, not just do it for the sake of no post back. To implement that, I ch... (more)
类别: UX | 点击: 2 | 评论 | | 源: www.codeproject.com
标签: ajax, JQuery
1
臭虫

使用asp.net mvc和jquery创建Twitter风格的页面

xgluxvxgluxv 发表于 141 天, 12 小时, 50 分钟 之前
Wednesday, October 28, 2009 10:07:02 AM GMT Thursday, October 22, 2009 1:47:45 AM GMT
I really like the simplicity of the AJAX paging at Twitter so I decided to use the same type of paging, including a similar more button, on the start page on this site. It actually surprised me how simple it was to build it, including fallback for visitors that doesn’t have javascript enabled (such as our dear friend Google), with ASP.NET MVC and a few lines of javascript with jQuery (more)
类别: Web Form | 点击: 3 | 评论 | | 源: joelabrahamsson.com
标签: asp.net mvc, JQuery, twitter style
1
臭虫

HighOnCoding:使用JQuery UI,创建漂亮的对话框

xgluxvxgluxv 发表于 149 天, 5 小时, 20 分钟 之前
Thursday, October 22, 2009 1:52:45 AM GMT Wednesday, October 14, 2009 9:18:09 AM GMT
Abstract: Dialog boxes are frequently used in web applications to provide additonal information to the user. Dialog boxes are not hard to create but creating attractive draggable and stretchable dialog boxes is hard. In this article we are going to demonstrate how to use JQuery UI library to create attractive dialog boxes. (more)
类别: UX | 点击: 8 | 评论 | | 源: www.highoncoding.com
标签: dialog, JQuery, JQuery UI
1
臭虫

ASP.NET.4GuysFromRolla.com: Creating a Filtering User Interface With jQuery In a Web Forms Application: Part 2

xgluxvxgluxv 发表于 149 天, 12 小时, 51 分钟 之前
Thursday, October 22, 2009 1:52:45 AM GMT Wednesday, October 14, 2009 1:47:04 AM GMT
Introduction Creating a Filtering User Interface With jQuery In a Web Forms Application: Part 1 looked at how to use jQuery in an ASP.NET Web Forms application to build a collapsible filtering user interface. When the page is loaded into the user's browser the filtering interface is collapsed. Clicking the filtering interface's title toggles the interface between its collapsed and expanded states. When expanded, a user can interact with the filtering controls - DropDownLists, TextBoxes, CheckBoxes, and ... (more)
类别: Web Form | 点击: 0 | 评论 | | 源: www.4guysfromrolla.com
标签: asp.net, JQuery
1
臭虫

ASP.NET.4GuysFromRolla.com: Creating a Filtering User Interface With jQuery In a Web Forms Application: Part 1

xgluxvxgluxv 发表于 149 天, 12 小时, 52 分钟 之前
Thursday, October 22, 2009 1:52:45 AM GMT Wednesday, October 14, 2009 1:46:04 AM GMT
Introduction jQuery is a lightweight, cross-browser JavaScript library designed to ease JavaScript's most common tasks, including inspecting and manipulating the Document Object Model (DOM) and making out of band HTTP requests to support AJAX functionality. In plain English, jQuery makes it easy to perform client-side tasks like adding or removing attributes or CSS classes to elements in the DOM, or showing or hiding elements on the page in response to a user action (such as clicking a button). jQuery i... (more)
类别: Web Form | 点击: 0 | 评论 | | 源: www.4guysfromrolla.com
标签: asp.net, JQuery
1
臭虫

Update Form Fields with JSON result in ASP.NET MVC | Marc Dormey

xgluxvxgluxv 发表于 150 天, 11 小时, 29 分钟 之前
Thursday, October 22, 2009 1:52:45 AM GMT Tuesday, October 13, 2009 3:09:25 AM GMT
Wouldn’t it be nifty to receive a JSON result object from AJAX and it automagically updates your form fields? Those who said “No” leave now! I had to find a way to iterate through my JSON properties and, if I named the fields the same as the JSON properties, update them all in one go. Lets use a simple “Person” model and have a look at the ASP.NET MVC action: public ActionResult GetPerson(int id) { var person = Context.GetPerson(id); return Json(new { ... (more)
类别: UX | 点击: 3 | 评论 | | 源: www.marcdormey.com
标签: asp.net mvc, JQuery, JSON
1
臭虫

MyViewState.NET | Hey jQuery lovers, ASP.NET AJAX can do Ajax too!

adminadmin 发表于 168 天, 23 小时, 25 分钟 之前
Thursday, October 01, 2009 8:39:22 AM GMT Thursday, September 24, 2009 3:12:51 PM GMT
I’m a big fan of jQuery. I’m no expert, but with a copy of jQuery in Action on my desk and Google Bing at my fingertips I can do a lot of cool things with it. One of the ways I often see people using jQuery is to make Ajax requests. jQuery provides a great library which should take care of just about all your Ajax needs, if you are an UpdatePanel-free web developer. I’ve blogged about it to a small degree, but for more in-depth details you can read about it here. For a quick example, here’s how you might... (more)
类别: UX | 点击: 0 | 评论 | | 源: www.myviewstate.net
标签: ajax, JQuery
Previous 1 2 3 4 5 6 7 Next