ok - understood. I have the following code that attempts to modify the data but I do not see it translating on the screen (the recordCustomStyle) - is this how I am supposed to do it? (sorry)
Code:
isc.DataSource.create({
ID:"processData",
fields: [{name: "cwPK__", primaryKey:true}, {name:"numProcess"}, {name:"numProcess$DF"}],
clientOnly:true,
cacheData:data,
transformResponse:function(dsResponse, dsRequest, data){
this.Super("transformResponse", [dsResponse, dsRequest, data]);
var d = dsResponse.data;
if(d['numProcess'] == "2")
d['rowStyle'] = "myHighGridCellNew";
dsResponse.data = d;
return dsResponse;
}
});
Comment