0

我有一个选择字段,它在我的应用程序中显示一些过滤值。我想通过单击按钮显示选择字段。当用户单击按钮时,我必须触发选择字段值..

这是我的代码

  {
                        xtype: 'selectfield',
                        itemId: 'filterproperty',
                        cls:'propertylistonmlscss',
                        id:'filterproperty',
                        name: 'filterproperty',
                        autoSelect: false,
                        placeHolder:'Select',
                        //labelWidth: '40%',

                        options: [
                            {text: 'Select', value: '-1'},
                            {text: 'N', value: 'N'},
                            {text: 'S',  value: 'S'},
                            {text: 'E',  value: 'E'},
                            {text: 'W', value: 'W'},
                            {text: 'NW',  value: 'NW'},
                            {text: 'SW',  value: 'SW'},
                            {text: 'NE',  value: 'NE'},
                            {text: 'SE',  value: 'SE'}
                        ]
                    }

这是按钮代码

{
                        xtype:'button',
                        cls:'settingssavebutton',
                        itemId: 'settingsSaveButton',
                        id:'settingsSaveButton',
                        html:'Save',
                        docked: 'right',
                        border:0

                    }

请帮我解决这个问题..提前谢谢

4

1 回答 1

1

在选择字段上使用以下方法:

showPicker()
于 2014-08-08T21:51:31.277 回答