javascript - jqGrid: Is there an event for grid complete and no rows? -


In the webpage given to me, there are two grids: one gets data from the server and the second one waits for the first grid Population based on line click This idea: The user selects the archive from a grid and the selected row gets added to another table.

My goal is to show a message if there is no record of the grid. The problem is that "grid" and "full load" events are only removed if the grid is actually shown The data is there.

Is there an alternative solution for this? How can I handle this situation?

both loadComplete and grid The event will be called an event if the server returns empty results if it is not in your grid, then the returned results from the server are probably wrong. To verify this you will see the loadError callback in the grid I recommend to include For more information about loadError , see. After you fix the problem, I would advise you to use the loadComplete to show the message you want. Looked for made it an option to demonstrate how this message can be displayed.


Comments