We are using igx-combo as the cell editor for some columns in our grid.
In order to improve the user experience, we need to automatically open the combo's dropdown when the cell enters edit mode. Unfortunately we cannot find any properties on the combo or elements in the cell on the entering edit mode event that will let us determine the actual editor that will be used.
Can someone please point us in the right direction?
@ViewChildren(IgxComboComponent) public combos: QueryList<IgxComboComponent>; //... public cellEditEnter(event) { if (event.column.field == "CategoryName") { requestAnimationFrame(() => { this.combos?.first?.toggle(); }); } }
This worked great, thank you!