Hello
I have a grid with default displayed new row (AllowAddNewDefault as I remember).
This new row has no index, right ?
How to write something to cells of this row ?
regards
Hello,
First of all go through the CMOS help file provided by Infragistics. That will be a very good guide for all this.
<inserted row object>.getCellFromKey(<Key>).setValue(<value>);
This would set the value for the cell of the newly added row which has the column key defined as <Key>
Replace the <..> with appropriate values.
Sujeeth