如何在dojo中使用EnhancedGrid插件中的搜索?

如何在dojo中使用EnhancedGrid插件中的搜索?,dojo,dojox.grid.datagrid,dojox.grid,Dojo,Dojox.grid.datagrid,Dojox.grid,我正在动态搜索行中的一些数据…因此为此,我使用了“dojox/grid/enhanced/plugins/Search…”但我没有得到任何搜索图标,我不知道如何使用此plz建议这是我的代码 grid = new EnhancedGrid({ id:'grid', store : yourStore, structu

我正在动态搜索行中的一些数据…因此为此,我使用了“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(); 

如图所示。只需查看源代码。

@MiBrock是的,我曾使用过,但我需要了解搜索……我不能使用搜索吗????