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
45
startEditing
posted

I am working with angular grid. I would like to know how I can initialize the row edit, using a button

Parents
No Data
Reply
  • 1320
    Verified Answer
    Offline posted

    Hello Joshua,

    After investigating this further, I determined that your requirement could be achieved by setting the first editable cell of the row in edit mode by using the method setEditMode:

    public rowInEditMode(){

          this.grid.getCellByColumnVisibleIndex(0,1).setEditMode(true);

        }

    I have prepared a sample, demonstrating the described behavior. Please test it on your side and let me if you need any further information regarding this matter.

    Regards,
    Monika Kirkova,
    Infragistics

Children