This question is locked. New answers and comments are not allowed.
Hello,
Just tried the new Q2 gridview and found a bunch of warnings regarding to DataRecord. What is the replacement for DataRecord. Particularly, how do you access data stored in DataRecord.Data? e.g.:
Thanks,
Kevin
Just tried the new Q2 gridview and found a bunch of warnings regarding to DataRecord. What is the replacement for DataRecord. Particularly, how do you access data stored in DataRecord.Data? e.g.:
var
myDataRecords = myGridView.Records;
// do some counting based on SysState field
var sysOn = ((from o in myDataRecords
where ((MyDataObject)((DataRecord)o).Data).SysState + "" == "Available"
select ((MyDataObject)((DataRecord)o).Data).SysId
).Distinct()).Count();
Thanks,
Kevin