This question originated after I looked on this answer of Oleg and demo-grids in it.
gridComplete
:
This fires after all the data is loaded into the grid and all other processes are complete. Also the event fires independent from the datatype parameter and after sorting paging and etc.
loadComplete
:
This event is executed immediately after every server request. data Data from the response depending on datatype grid parameter
From that docs I understood that gridComplete
fires at the end of drawing grid, and loadComplete
fires after jqGrid completes communication with backend.
And so I wonder - why in demos, loadComplete
used for change color of cells and not gridComplete
?