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
320
Edit Mode Question.
posted

Hi guys,

I am using Move row method to add the new blank row in any position of the grid, and I have already set the active scroll area in order to display the blank row in the approiate position.

 However, how can I set the cell in edit mode at once?

User wants to type the data into the grid at once after adding a row (Current behaviour is user has to click the cell after add the row)

 

Regards
Andrew

Parents
No Data
Reply
  • 1590
    posted

    Hi. 

    After adding new row: 

     grid.ActiveCell = newRow.Cells["YourColumnKeyOrIndex"]; //set cell to active you need.

    grid.PerformAction(UltraGridAction.EnterEditMode);

     

    Alex. 

Children
No Data