I have the following code that I am using in my Asp.net application.
<script type="text/javascript">
//function is called on changing focused row
function OnGridFocusedRowChanged() {
// Query the server for the "EmployeeID" and "Notes" fields from the focused row
// The values will be returned to the OnGetRowValues() function
grid.GetRowValues(grid.GetFocusedRowIndex(), 'Order #;LineNum;Qty Cmplt;Customer Notes;Sales Order Notes;Rem Qty', OnGetRowValues);
}
//Value array contains "EmployeeID" and "Notes" field values returned from the server
function OnGetRowValues(values) {
CallbackPanel.PerformCallback(values);
}
</script>
This works fine unless I have a comma in one of my columns. The List of parameters that comes from GetRowValues is comma delimited but does not have any kind of quote or anything seperating it. Is there a way to workaround this? I need to be able to split this parameter somehow into the individual elements from the selected row.