I am trying to move a dynamic column to different position using Infragistics Angular grid, igx-grid. I tried with
const newCol = this.grid.getColumnByName(node);
newCol?.move(j);
but newCol is null since grid has not finished loading and new dynamic column has not been applied.
So I need to do this after grid is done loading. What event can I subscribe to get this done? Thanks
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…