Good Afternoon. I can’t figure out how to detect state change on a checkbox.
leftGrid.jqxGrid({
width: 500,
source: dataAdapter,
editable: true,
selectionmode: 'checkbox',
columns: [
{ text: 'Item ID', datafield: 'id', width: 75, editable: false },
{ text: 'Description', datafield: 'description', width: 250, editable: false },
{ text: 'Size', datafield: 'size', width: 50, editable: false },
{ text: 'Gender', datafield: 'gender', width: 75, editable: false }
]
});
This got me started, but I can’t seem to find a complete event reference to work through gathering more properties.
leftGrid.on('rowselect', function (event)
{
var args = event.args;
alert(event.args);
});
Thanks,
Shaun McArthur