Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
Write to a new row
posted

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

  • 90
    posted

    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