Posted 2 April 2021, 8:11 am EST
HI Wijmo,
can you help me how to freeze only last row in the wijmo flex grid and to perform add row and delete row actions
Forums Home / Wijmo / General Discussion
Posted by: pallavi.guda on 2 April 2021, 8:11 am EST
Posted 2 April 2021, 8:11 am EST
HI Wijmo,
can you help me how to freeze only last row in the wijmo flex grid and to perform add row and delete row actions
Posted 5 April 2021, 1:54 am EST
Hi Pallavi,
You can use the columnFooters panel of FlexGrid to add a frozen row. Please refer to the sample for reference:
https://codesandbox.io/s/modern-feather-o7o0w
Let us know if this helps.
Regards,
Wijmo
Posted 5 April 2021, 5:17 am EST
Hi Wijmo,
I need a frozen row in the last of the grid and rows should be added before the frozen row how can it be done
Posted 5 April 2021, 11:42 pm EST
Hi Pallavi,
Unfortunately, data rows or new rows (*) are not designed to be frozen from the bottom. If you wish to always display the * marked row, then you can use the newRowAtTop and frozenRows property. In this demo below, add the following line after the grid is created:
https://www.grapecity.com/wijmo/demos/Grid/Rows/AddingRemoving/purejs
theGrid.frozenRows = 1;
Now, the new row will always be displayed on top.
~regards