Hi I am using a Infragistics 15.1 WebHierarchicalDataGrid
in my ASPX page.
The grid has no vertical scrollbar(this is how my client wants). So when I expand any detail row, grid has to expand it's current height which is when it looses it formatting on the bottom rows. For instance if the detail row has height of 30px, 3 rows will loose formatting(assuming each row height is 10 px)
I have tried few settings
<Behaviors>
<ig:ColumnFixing Enabled="true" ShowFixButtons="false" ></ig:ColumnFixing>
and enabled the footer (This helps only one row line).
None of it helped. Can anyone please help me with this?
Thanks
Apply some fixed height to your WebHierarchicalDataGrid
:
<ig:WebHierarchicalDataGrid Height="650px">
</ig:WebHierarchicalDataGrid>
This will make the formatting issues go away as header and footer formatting is performed based on height and width of the grid.