The JqGrid script can show a list of record loaded with ajax procedure.
Example:
<table id="tab_Categorize"></table>
<script>
jQuery('#tab_Categorize').jqGrid({caption: 'Title',url: 'CategorizeAjax.php?a=123',...});
</script>
Can i view in the list the row (id 123) highlighted?
Thank’s.
If the row which you need highlight has the id
123you can just use setSelection method for selecting:If you download the grid from the server you should place the code inside of
loqdCompletecallback, because the data can be selected only after there are loaded.