摘要:
jqGrid有很多事件,包括事件的参数,在下表中列出。常用的事件包括afterInsertRow ,gridComplete,loadComplete,onCellSelect,onRightClickRow,onSelectRow等代码示例如下:jQuery("#gridid").jqGrid({... onSelectRow:function(rowid,stat){alert(rowid);alert(stat)},...});EventParametersDescriptionafterInsertRowrowidrowdatarowelemThis event f 阅读全文
摘要:
在IE9的下,jQuery Validation Plugin 1.9中的submitHandler的会在页面创建一个input hiddenvarhidden=$("<inputtype='hidden'/>").attr("name",validator.submitButton.name).val(validator.submitButton.value).appendTo(validator.currentForm);如果不设定submit按钮的name属性,当form做提交时,UpdateModel失败。 阅读全文
摘要:
ASP.NET MVC 3 Client-Side Validation Summary with jQuery Validation (Unobtrusive JavaScript)When we were working withASP.NET MVC 2, we needed to write our own JavaScript to getClient-Side ValidationSummary with jQuery Validationplugin.I am one of those unfortunate people still stuck with.NET Framewo 阅读全文
摘要:
看个博客要跨越 墙,唉! Solve the MVC 3 Shortcut conflict with MVC 2 on Visual Studio2010 October 10, 2011 by Mohamed Radwan When we install MVC 3 on Visual Studio 2010, the shortcut for MVC 3 didn’t work and this because all shortcut are associated with MVC 2, we can solve... 阅读全文
摘要:
2008-05-13 14:08 by Rainbow, 1092 visits,收藏,编辑一、抽象类: 抽象类是特殊的类,只是不能被实例化;除此以外,具有类的其他特性;重要的是抽象类可以包括抽象方法,这是普通类所不能的。抽象方法只能声明于抽象类中,且不包含任何实现,派生类必须覆盖它们。另外,抽象类可以派生自一个抽象类,可以覆盖基类的抽象方法也可以不覆盖,如果不覆盖,则其派生类必须覆盖它们。二、接口: 接口是引用类型的,类似于类,和抽象类的相似之处有三点:1、不能实例化; 2、包含未实现的方法声明; 3、派生类必须实现未实现的方法,抽象类是抽象方法,接口则是所有成员(不仅是方法包括其他成员); 阅读全文
摘要:
ASP.Net Mvc 2 : 将枚举类型绑定到下拉列表 ( create a dropdownlist from an enum )asp.net mvc 2 简简单单做开发 自定义DropdownList控件 阅读全文
摘要:
[Obsolete("Message")] 阅读全文
摘要:
1. delegate 委托可以理解为cxx 语言中的函数指针,标示了方法调用的回调函数的规范。强类型,便于编译时检查是它的最大优点,从此可以和void * 说再见了。2. event 事件用以delegate委托声明事件,标示响应该事件的回调函数必须符合其声明委托的定义3. lambda 表达式在.net世界中表现为匿名委托,之前又要提到匿名方法(函数)01publicclassTest{02publicvoiddelegateClose();//声明一个无参无返回值的委托03publiceventClose CloseEvent;//声明一个Close对应事件04}05staticvoid 阅读全文