I am working with angular grid. I would like to know how I can initialize the row edit, using a button
Hello Joshua,
I am glad that you find my suggestion helpful and were able to solve your issue.
Thank you for using Infragistics components.
Regards, Monika Kirkova, Infragistics
Excellent thanks.
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.