jqGrid: Search Box: How to hide the search popup programmatically
I'm using the jqGrid plugin along with its 'advanced search' feature. Is there a way to programmatical开发者_运维知识库ly show/hide the search popup? I'd like to hide the popup, if it's currently being displayed, based upon a user action elsewhere on the screen.
If you have a jqGrid with id="list"
then the "Advanced Search" dialog will have id="fbox_list"
(it will be build from the "fbox_" prefix and the grid's id). So, to hide the dialog it should be enough to use:
$("#fbox_list").hide();
精彩评论