-1
如何在extjs中存儲過濾器?如何在extjs中過濾商店?
fieldLabel : 'Status',
xtype : 'combo',
name : 'status',
store : new Ext.data.ArrayStore({ fields : ['status'], data : [['A'],['B'],['C']),
displayField : 'status',
valueField : 'status',
autoSelect : true,
typeAhead : true,
validateOnBlur: true,
queryMode : 'local'
我需要根據一些條件做過濾器..樣品
if(Somecondition)
.... filter A and B
elseif(Somecondition)
filter B
else
Filter only A and C
這隻我需要..謝謝你的幫助..它的工作很好 – Deepak