javascript - how to delete the contents of a particular column of jqgrid table? -
how delete contents of particular column of rows of jqgrid table?
or how can set particular column of rows of jqgrid table particular value in single shot.
you can this:
to delete contents:
$('td[aria-describedby=<your table name>_<column name>]').html('');
to set value:
$('td[aria-describedby=<your table name>_<column name>]').html('whatever');
Comments
Post a Comment