Hello Buggs2015,
Where exactly you would like to change that value? Before load data in Grid or after click with button maybe?
You could change some particular value with this properties – setcellvalue or updaterow.
Also another approach it is possible but if you search for some value ‘testabc’ and could repeat in different places and will be replaced there.
Like this way (in “column” property):
{ text: 'Quantity', datafield: 'quantity', width: 70, cellsalign: 'right', columntype: 'numberinput',
cellsrenderer: function (row, columnfield, value, defaulthtml, columnproperties) {
if (value < 20) {
return '' + value + '';
}
else {
return '' + value + '';
}
}
}
Best Regards,
Hristo Hristov
jQWidgets team
http://www.jqwidgets.com