How do you set the title row to fixed in the UltraWebgrid.
I thought that :
grid.displayLayout.UseFixedHeaders =
True
HowWould do it, but it has no effect.
I have set the controls property as well as used the code above.
Thanks,
I miss-understood what you were asking for. glad you found the answer though.
I found the answer
The headers will stay fixed (stationary) by using this line of code in the grid Initializelayout.
DisplayLayout.StationaryMargins
= Infragistics.WebUI.UltraWebGrid.StationaryMargins.Header
thanks for the prompt response, but that's still not the behavior that I'm looking for.
I have a couple of hundred entries in an ultra web grid, I would like the header, the first row with the column titles not to scroll, after I scroll down my first page of data
thanks,
You need these 3 in your display layout properties
FixedHeaderIndicatorDefault="Button" TableLayout="Fixed" UseFixedHeaders="True"
without the indicator, there is no "push pin" to fix the header.