搜索字段在sencha touch中

时间:2013-08-29 06:21:25

标签: sencha-touch-2

在我的应用中,我必须添加搜索字段和一些选择字段。 当我在搜索字段中添加任何字符时,应显示来自商店的相应内容。 目前我正在使用我正在处理 keyup 事件的搜索字段。 请让我知道流程和指南行。 谢谢

1 个答案:

答案 0 :(得分:0)

我想您需要搜索字段的搜索功能..在您键入时显示结果。您可以通过使用正则表达式并将它们与商店中的条目进行比较来实现此目的。

这是我在项目中使用的代码:

      //referencing my searchfield
 Search: '#searchfield';
      //attaching an event
 Search: {
            keyup: "OnFocus"
         }
      //the actual function 
OnFocus: function (searchField, e) {
   var query = searchField.getValue(); //get the value entered in the search field
   var  ContactsContainer = this.getContactsContainer(); //the container that holds my contacts
   var store = Ext.getStore('Contacts'); // the store where I have the info
   store.clearFilter(); //assure there aren't any filters set

    if (query) {  //if the current value in the search field
       var thisRegEx = new RegExp(query, 'i'); //new regular expression with our value
       store.filterBy(function (record) {      //filter the store 
           if (thisRegEx.test(record.get('name')) //the fields in the store
               thisRegEx.test(record.get('surname'))
               thisRegEx.test(record.get('phone'))) {
               return true;  //must include this
           };


            return false;
       });
   }

祝你好运!