摘要:
if (window.ActiveXObject) return new ActiveXObject('Microsoft.XMLHTTP')else if (window.XMLHttpRequest) return new XMLHttpRequest()如上代码所示ie浏览器使用new ActiveXObject('Microsoft.XMLHTTP')返回一个XMLHTTP实例,而在fir... 阅读全文
摘要:
(1)引用命名空间 using作为引入命名空间指令的用法准则为: using Namespace; 在.NET程序中,最多见的代码莫过于在程序文件的开头引入System命名空间,其原由在于System命名空间中封装了许多最基本最常用的操作,下面的代码对咱们来说最为熟识不过: using System; 这样,咱们在程序中就能够直接运用命名空间中的类型,而不必指定细致的类型名称。using指令能够访... 阅读全文
摘要:
代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--varself=this;if(self.text!=""){this.add({//disabled:true,border:false,listeners:{render:function(){... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--//ExtJS中Ext.form.Label默认是没有click事件的,但由于项目需要,要求给label添加一些其它的事件,本文提供两种方法对这个class进行扩展,方法如下://方法1:Ext.on... 阅读全文
摘要:
extjs中的gridpanel、TreePanel等控件都可以有右键菜单,如下设置。代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--listeners:{render:function(){//Afterthecomponenthasbeenr... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--Ext.namespace('IAMadmin');IAMadmin.MainApp=function(){//publicspacereturn{//publicpropertiesviewport... 阅读全文
摘要:
出處:http://www.cnblogs.com/petermsdn/archive/2008/12/23/1360695.htmlhttp://www.kmnet.net/Doc/10/1124/以下為各第三方控件網址:http://vectorlight.net/telerik RadControls for Silverlight includes 24 UI controls that ... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--arrayMenu.push({text:colorText,menuSource:arrayMenuSource[i],enableToggle:true,//是否允许交替按钮状态//pressed... 阅读全文