关于Ext.grid.EditorGridPanel的下拉列表框实现


1. 下拉列表需要的数据,根据需要可以到后台去取数据,这里就不一一介绍了

 

var flagStroe = new Ext.data.SimpleStore({
     fields : ['id', 'flag'],
     data : [[0, '是'], [1, '否']]
}); 

 


2. 表头需要添加editor属性,代码如下:

 

{
 header : '是否置顶',
 dataIndex : 'maketop',
 sortable : true,
 width : 75,
 editor : new Ext.form.ComboBox({
       store : flagStroe,//数据源
       displayField : 'flag',//显示下拉列表数据值
       valueField : 'id',//提交时下拉列表框的数据值
       typeAhead : true,
       triggerAction : 'all',
       allowBlank : false,
       forceSelection : true,
       mode : 'local'
      }), 
  ......代码省略
}

 把这些代码加添到相应的的地方既可以现实该功能

 

 

 

你可能感兴趣的:(ext)