2010年6月3日 星期四

Ext 3 combobox filter 失效

問題:解決combobox filter失效
描述:如在combobox還沒有進行為任何動作前,對參照的sotre進行filter會沒有效果,但是如果已經對combobox執行過動作(如:選擇ITEM),再對store執行filter就可以看到效果
解決方式:
建立combobox時,增加lastQuery: ''屬性
{
id : 'comboOrderPayType',
store : sellerAccountListStore,
model : 'local',
valueField : 'valueField',
displayField : 'displayField',
triggerAction : 'all',
emptyText : '請設定',
editable : false,
allowBlank : false,
lastQuery: '',
xtype : 'combo',
hiddenName : 'remit_to',
fieldLabel : '付款方式'
}

沒有留言: