多选下拉框

        var workname = new Ext.form.MultiSelect({
            store: pointComboBoxStore,
            fieldLabel: '工作面',
            labelStyle: 'text-align:right',
            displayField: 'wz',
            valueField: 'Point',
            width: 280,
            editable: false,
            mode: 'local',
            allowBlank: false,
            emptyText: '--选择工作面--',
            triggerAction: 'all',
            listeners: {// select监听函数   
                'select': function (combo, record, index) {

                }
            }
        });

 

 

相关文章:

  • 2022-12-23
  • 2022-01-26
  • 2021-10-27
  • 2021-12-10
  • 2021-10-13
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-02-02
  • 2021-12-22
  • 2021-06-02
  • 2022-12-23
相关资源
相似解决方案