Hello Team,
I change my code now for replace the "$" sign and "," and after changing the character i am able to change the color of row group also,
Please check the below given code:
rowInit: function(ui) {
var _pov = ui.rowData.Projected_value;
var number = _pov.toString().replace(/,/g, "");
var n = number.replace("$", "");
var $chk = $('#grid_Overages');
if ($chk.is(":checked") && n < 0) {
return {
style: "color:red"
}
}
},
Using this code it works fine now.
Thanks