Hi slbtuga,
The grid can send other data apart from the id, too. In fact, when updating a row you will need to send all its data to the server. This can be done for the delete operation, too. You can then use the row data however you like on your server-side. Here is a part of the Build CRUD Web App with jqxGrid using PHP and MySQL example that shows how to send the complete row data to the server when a row is updated:
updaterow: function(rowid, rowdata, commit) {
// synchronize with the server - send update command
var data = "update=true&" + $.param(rowdata);
$.ajax({
dataType: 'json',
url: 'data.php',
cache: false,
data: data,
success: function(data, status, xhr) {
// update command is executed.
commit(true);
},
error: function(jqXHR, textStatus, errorThrown) {
commit(false);
}
});
}
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/