I am doing server side validation using the following
[code]
<pre> afterSubmitCell:function(serverresponse, rowid, cellname, value, iRow, iCol){
s = serverresponse.responseText;
if ($.trim(s) != 1){
return [false,s]
}
else
return [true,""];
},</pre>
[/code]
With this I can check and return error, however the cell is restored and returned to previous value. Is there way to keep the cell in edit mode and have cursor focus?
Any help would be appreciated
Registered customer Standard License
Kris
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top