jquery - editRow not working after setCell in jqGrid -


i'm using setcell set value of cell , , after enabling cell editing

grid.jqgrid('setcell','1','valid','5'); grid.jqgrid('editrow','1', false); 

but result ist cant click longer on cell ?

no longer editeble

after calling sercell cell cant longer editable.

how can make cell again editable ?

thanks

from comment find solution

instead set column value

grid.jqgrid('setcell','1','valid','5');

you need set :
$('#1_valid').val('5');


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -