Posted 10 March 2022, 12:58 pm EST
Hi,
Iam fetching the cellData as below,
const cellData = panel.getCellData( r, c, false );
How do i get the column name of this particular cellData in the FelxGrid table?
Thanks,
Forums Home / Wijmo / General Discussion
Posted by: sskss1ss2 on 10 March 2022, 12:58 pm EST
Posted 10 March 2022, 12:58 pm EST
Hi,
Iam fetching the cellData as below,
const cellData = panel.getCellData( r, c, false );
How do i get the column name of this particular cellData in the FelxGrid table?
Thanks,
Posted 11 March 2022, 7:22 am EST
Hi,
For getting the column for the specified index, you may access the column collection and access the specified column based in the index.
Please refer to the following code snippet for reference:
panel.grid.columns[c].binding;
Hope it helps!
Regards,
Manish Gupta
Posted 13 March 2022, 9:34 am EST
Hi,
Thank you