Hey guys
I am using cell editing for my grid.
Is there a way to put an on change event to monitor the input field after the user clicks the cell?
ie like this
$(“#jqgrid-cell-input”).change(function() {alert(“TEST”);} )
Also I am using a subgrid (blank row) and changing the HTML to have 3 input fields.
I want to lock the cell while it is in edit mode.
I am using this
$(“#jqGridDetails”).jqGrid(‘setCell’,rowid,iRow,”,’not-editable-cell’);
$(“#jqGridDetails”).jqGrid(‘setCell’,rowid,iRow,”,’ui-state-focus’);
But it will only view as locked after i click out of the cell. Is there a way to remove the edit box after setting the above options? just like you do when you click out? but with out the cell posting?
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top