Remove filter description in enhanced grid dojo

86 Views Asked by At

I would like to remove the filter description in dojo enhanced grid.

Here is the image:

enter image description here

1

There are 1 best solutions below

1
bajji On

The message is part of FilterBar of the plugin Filter. Try getting the filter bar from Filter like

var filterBar = dijit.byId('grid').pluginMgr.getPlugin('filter').filterBar;

Next, the text is set with attach point name as 'statusBarNode'

Once you the attachpoint, you can change the text by using set() method or innerHTML

Hope this helps.