var p_years = new Ext.form.ComboBox( {
fieldLabel : '统计年份',
anchor : anchor_w,
mode : 'remote',
maxHeight:100,
triggerAction : 'all',
selectOnFocus : true,
forceSelection : true,
editable : false,
//store :[['11', '2011'], ['12', '2012'],['13', '2013']] //此为第一种
store:[2011,2012,2013,2014,2015,2016,2017,2018] //此为第二种,当没有制定value和text的时候,默认提交值与显示值为同一个。
});
var proj_main_store = new Ext.data.JsonStore({
url : "************",
fields : ['TEXT', 'VALUE'],
root : "objs",
baseParams : {
"obj/dicttypeid" : "BM_IMPORTANT_PROJ"
}
});
proj_main_store.addListener("load", function(){
proj_main_store.insert(0, new Ext.data.Record({
'TEXT' : '全部',
'VALUE' : ""
}));
});
var proj_main_type = new Ext.form.ComboBox( {
fieldLabel : '重点工程',
anchor : anchor_w,
mode : 'remote',
triggerAction : 'all',
selectOnFocus : true,
forceSelection : true,
editable : false,
valueField : 'VALUE',
displayField : 'TEXT',
store : proj_main_store
});
Extjs NumberField后面加单位实现思路
UnitText.js=======================//输入框textfield后面放字unitText定义:Ext.override(Ext.form.TextField,{unitText:'',onRender:function(ct,position){Ext.form.TextField.superclass.onRender.call
关于extjs4如何获取grid修改后的数据的问题
下面是API的描述。可以获取各种值。e:ObjectAnediteventwiththefollowingproperties:grid-Thegridrecord-Therecordthatwaseditedfield-Thefieldnamethatwaseditedvalue-ThevaluebeingsetoriginalValu
extjs两个tbar问题探讨
版本:extjs3.4接触过extjs的同志们都知道每个panel都有一个tbar(topbar上面工具栏),bbar(bottombar底部工具栏)大家做查询页面,一般都是啥样子的?最基本的是