0
我必須從函數調用EnhancedGrid過濾器插件,但在EnhancedGrid中,過濾器插件必須聲明才能使用過濾器。如何從函數調用enhancedGrid過濾器插件..在dojo
grid = new EnhancedGrid({
id : 'grid',
store : yourStore,
structure : layout,
rowSelector : '20px',
plugins : {
search : true,
pagination : {
pageSizes : [ "50", "100"],
description : true,
sizeSwitch : true,
pageStepper : true,
gotoButton : true,
maxPageStep : 2,
position : "bottom"
},
filter : {
closeFilterbarButton : true,
ruleCount : 2
itemsName : "rows"
}
}
});
grid.placeAt("myGrid");
grid.startup();
}
});
我該如何做到這一點?
但ineed喜歡這個plz幫助,例如: VAR buttonfilter = function(){ buttonfilter.onClick(){ filter(); //我必須調用一個過濾器 – user2794174