I am looking for a way to apply the column sizing from a child grid, to the other child grids.
If I expand one child grid and resize the columns, I would like that applied to every other child grid
Hello ddally,
Please let me know if you have any other questions or concerns about this issue and I'll be glad to help you.
Hi ddally,
Thank you for posting in our community!
The issue with this is that not all the child grids may exist when one column is resized. You would need some way of keeping track of the columns that were resized and then apply the new sizes once they are expanded.
You could do this with the columnResized event which has the columnKey and newWidth arguments. You can find more information on this event here:
http://help.infragistics.com/jQuery/2012.2/ui.iggridresizing_hg#events
Also, handling the rowsRendered event for the child grids could allow you to set their widths. You can find more information on this event here:
http://help.infragistics.com/jQuery/2012.2/ui.iggrid_hg#events
Please let me know if you need further assistance with this.