In the parent grid of nested grids under a particular condition , for a certain value I want to highlight that particular row when loaded. Something like
`columns: [
{ text: ‘MakerCheckerId’, datafield: ‘MakerCheckerId’, hidden: ‘true’, cellclassname: cellclass, },
{ text: ‘ModelName’, datafield: ‘ModelName’, },
var ID = ‘@p’
var cellclass = function (row, columnfield, value) {
if (value == ID) {
return ‘green’;
}
}
`
This is allowed in other types of grids,but I think nested grid may have another property than cellclassname because It is not supported here. So please help me how to accomplish this