12 2014 档案
摘要:EXTJS combo 控件:1.先定义store//年款var comboData_ReleasYear = [ ['0', '2010'], ['1', '2011'], ['2', '2013'], ['3', '2014']];2.定义combo控件{ ...
阅读全文
摘要:最近工作,发现在Extjs中自定义Store的功能挺多,特意在此做笔记,几下来,具体代码如下:1.定义Store//定义Storevar ItemSelectorStore = new Ext.data.ArrayStore({ fields: [ { name: 'BaseIn...
阅读全文
摘要:最近发现项目中FormPanel 里面需要 增加 button,的模块比较多,具体代码如下:var eastPanelForm_Dele = new Ext.form.FormPanel({ id: 'eastPanelForm_Dele', width: 250, border:...
阅读全文
摘要:这是在Extjs 中插入html 控件label!html: "您共选中了"获取label值:document.getElementById('howMany').innerText赋值label值:document.getElementById('howMany').innerText = "这是...
阅读全文
摘要:1 var dsform = new Ext.data.ArrayStore({ 2 data: [[123, 'One Hundred Twenty Three'], 3 ['1', '今天星期一'], ['2', '2014.12.29'], ['3', '9.25']...
阅读全文