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

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -