编辑grid中的数据在form的combo中显示初始值的问题
程序员文章站
2022-04-04 20:50:25
...
最近的项目中有个要求是在编辑grid中的数据时会将数据加载到弹出的formpanel中,其中有的数据要显示在combo中,并将对应的值选中显示。最后查资料实现,现在记录下来以备以后使用。
其实主要是添加listeners将该行对应的值赋给combo即可。
id:"degreeCombo",
xtype: "combo",
store:DegreeStore,
fieldLabel: "学历",
hiddenName: "degree",
editable: false,
mode: "remote",
displayField: "degreename",
valueField: "degreeid",
triggerAction: "all",
forceSelection: true,
emptyText: "请选择学历",
selectOnFocus: true,
listWidth:100
var degreefields = [{ name: "degreeid" }, { name: "degreename"}];
var DegreeStore = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
url: "Data/GetBasic.aspx?groupid=degree"
}),
reader: new Ext.data.JsonReader({
root: "data",
id: "degreeid",
fields: degreefields
}),
listeners : {
load : function() {
Ext.getCmp("degreeCombo").setValue(row.data.degree);
}
}
});
DegreeStore.load();
其实主要是添加listeners将该行对应的值赋给combo即可。
推荐阅读
-
ExtJS 2.2.1的grid控件在ie6中的显示问题
-
ExtJS 2.2.1的grid控件在ie6中的显示问题_extjs
-
ThinkPHP中的数据显示在模板上的问题
-
javascript - angular使用umeditor中,需要将数据绑定到编辑器中,显示html的问题
-
ThinkPHP中的数据显示在模板上的问题
-
ExtJS 2.2.1的grid控件在ie6中的显示问题_extjs
-
ThinkPHP中的数据显示在模板上的有关问题
-
ThinkPHP中的数据显示在模板上的有关问题
-
javascript - angular使用umeditor中,需要将数据绑定到编辑器中,显示html的问题
-
编辑grid中的数据在form的combo中显示初始值的问题