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

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -