I would like to remove the filter description in dojo enhanced grid.
Here is the image:
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.
Copyright © 2021 Jogjafile Inc.
The message is part of FilterBar of the plugin Filter. Try getting the filter bar from Filter like
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.