Hi,
We have grid grouping control with Unbound fields with 2 call back functions for QueryValue and SaveValue to handle the editing of cells for unbound fields.
this.gridGroupingControl1.TableDescriptor.UnboundFields.Add(fieldDescriptor);
this.gridGroupingControl1.QueryValue += new FieldValueEventHandler(gridGroupingControl1_QueryValue);
this.gridGroupingControl1.SaveValue +=gridGroupingControl1_SaveValue;
The query :
1) The unbound field has a field descriptor of fieldProperty Type - DOUBLE, say with a default value 48.14
2) If the user edit the cell and enters a non double value, eg : string value (say 'abcd') in any cell of that unbound field. How can we make sure that the invalid value of 'abcd' value is reset back to 48.14 (the previous valid value for that cell) silently in SaveValue call back function i.e gridGroupingControl1_SaveValue.
As of now, the value stays as 'abcd' with an error, but we do not want to show the error and revert the value to the previous valid value.
Can you please revert asap as we have a major production issue regarding this.
Thanks,
Hari