jqGrid trigger “Loading…” overlay

If you are searching for something like DisplayLoadingMessage() function. It does not exist in jqGrid. You can only set the loadui option of jqGrid to enable (default), disable or block. I personally prefer block. (see http://www.trirand.com/jqgridwiki/doku.php?id=wiki:options). But I think it is not what you wanted.

The only thing which you can do, if you like the “Loading…” message from jqGrid, is to make the same one. I’ll explain here what jqGrid does to display this message: Two hidden divs will be created. If you have a grid with id=list, this divs will look like following:

<div style="display: none" id="lui_list"
     class="ui-widget-overlay jqgrid-overlay"></div>
<div style="display: none" id="load_list"
     class="loading ui-state-default ui-state-active">Loading...</div>

where the text “Loading…” or “Lädt…” (in German) comes from $.jgrid.defaults.loadtext. The ids of divs will be constructed from the “lui_” or “load_” prefix and grid id (“list”). Before sending ajax request jqGrid makes one or two of this divs visible. It calls jQuery.show() function for the second div (id=”load_list”) if loadui option is enable. If loadui option is block, however, then both divs (id=”lui_list” and id=”load_list”) will be shown with respect of .show() function. After the end of ajax request .hide() jQuery function will be called for one or two divs. It’s all.

You will find the definition of all css classes in ui.jqgrid.css or jquery-ui-1.8.custom.css.

Now you have enough information to reproduce jqGrid “Loading…” message, but if I were you I would think one more time whether you really want to do this or whether the jQuery blockUI plugin is better for your goals.

Leave a Comment