I am using the onCellClick function of Sigma Grid to allow the user to select from a grid and have a form updated with the selected information.
When I try to split the record that is returned from onCellClick (which returns the record associated with the grid row) I get an "Object doesn't support this property or method" pointing to the split line.
onCellClick : function(value, record, cell, row, colNO, rowNO, columnObj, grid){
var recordCurrent = record;
var recordSplit = recordCurrent.split(",");
alert("Participant is " + recordSplit[1]);
}
If I do an alert showing the unsplit record from the onCellClick event it shows the data I expect.
I am missing something obvious. Any direction you can provide will be appreciated.