我正在动态地搜索行中的一些数据....所以对于这个我使用" dojox / grid / enhanced / plugins / Search ....但我没有得到任何搜索图标和我不知道如何使用这个PLZ建议这里是我的代码
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: 5,
itemsName: "rows"
}
}
});
grid.placeAt("myGrid");
grid.startup();