You question shows indirectly that you fill jqGrid in not quite correct way. One sees that you don't understand what is the "rowid".
jqGrid build grid based on the HTML table. The main information which will be placed in the table are rows of data. Rows in HTML table are <tr> elements which have <td> elements as cells. During filling of the data in the grid all <tr> elements will be filled inclusive the id attribute like
<tr id="1410"><td>cell for the first column<td><td>cell for the second column<td></tr>
It's important to understand that the current implementation of jqGrid must have id attributes for every row. The JSON or XML data which you post back from the server have to contain the id information (see the documentation about different supported formats if jqGrid input data).
So if you fill the id property of JSON or XML data as the ids from the database no problem which you describe will never exist. The problem exist either if you don't fill the id properties or fill it in the wrong way. In both cases jqGrid will don't find any information about ids and in the case it will have to generate ids of <tr> elements itself. Currently jqGrid uses in the case sequential numbers 1, 2, 3, ..., but it can be changed in any new version of jqGrid.
So I recommend you verify the format of data which you post back to jqGrid when you fill it. If you will have problems to find the bug you should include the full definition of the jqGrid in the text of your question and include additionally the server response (JSON or XML data). To catch exact server response you can use for example Fiddler or Firebug.