3

如何在 EXTJS 页面中有一个搜索框(或搜索字段)。

我尝试了以下操作,但页面中没有显示任何内容: 1. 在 WebContent/ext/ux 文件夹中添加了 SearchField.js。2. 编码如下:

    Ext.Loader.setConfig({
            enabled: true,
            paths: {
                'Ext.ux': 'ext/ux'
            }
        });
        Ext.require([
                     'Ext.ux.form.SearchField'
                 ]);
    Ext.onReady(function () {
    var win=Ext.create('widget.window',{
            title: 'Super User Access Management',
            height: 480,
            width: 640,
    border:false,
              items       : [ 
{
          xtype      : 'combobox',
          fieldLabel : 'Module',

          value: 'Super Admin' ,
          store: ['Super Admin', 'Partner Contact Management', 'Partner Trainning Management'],
          listeners: {
              select: function(){
               alert('Hello module!');
              }
            }        
            },
            {
              xtype      : 'combobox',

              value: 'Infogain' ,
              store: ['Infogain', 'IBM', 'Mocrosoft'],
              listeners: {
                    select: function(){
                     alert('Hello partner!');
                    }
                  }        
                },
     {
                        xtype: 'searchfield',
                        height: 30,
                        id: 'searchField',
                        styleHtmlContent: true,
                        width: 320,
                        fieldLabel: '',
                    },
{ 
                  xtype: 'gridpanel',
                  border: false,
                  title:'Empty grid',
                  columns: [{header: 'World'}], 
                  store: Ext.create('Ext.data.ArrayStore', {}) 
                  }
       ]
        });
        win.show();
    });

请让我知道我在哪里做错了。

4

2 回答 2

6

回答问题下的评论:

我使用 aExt.toolbar.Toolbar来达到这个目的。

像这样

您可以将工具栏放在带有dockedItems配置的容器中。

于 2012-12-28T11:01:44.877 回答
0
tbar: [
    'Search : ', ' ',
    new Ext.ux.form.SearchField({
     store: store,
         width:320
             })
    ]

在您的表单中添加代码..指定store..

于 2015-03-12T11:55:59.970 回答