2013-10-03 76 views

回答

1

您可以使用contains操作:

Ext.create('Rally.data.WsapiDataStore', { 
      model: 'UserStory', 
      fetch: ['FormattedID','Name'], 
      autoLoad: true, 
      filters:[ 
        { 
         property: 'Name', 
         operator: 'contains', 
         value: "Mobile" 
        } 

       ], 
      listeners: { 
       load: this._onDataLoaded, 
       scope: this 
      } 
     }); 
相關問題