I have a page (telerik:RadPage) containing few grids and some nested controls and I was wondering how I can:
have a particular cell in one of the grid make always visible even during scrolling. I am not even sure if it is possible, but the one cell I want visible is the first one I am displaying.
Any help is appreciated and all suggestions are welcome.
Thanks!
I have no experience working with Rad controls, but if you want to have something that’s not scrollable – move it out of the ScrollViewer. This is general principle.
I give here three possible approaches, with increasing complexity, but I hope they help you at least get going.
1. Duplicate first element and show it above
ScrollViewer:This method has a loot of drawbacks. Starting from duplication itself and ending with focus/keyboard management.
2. All except first elements goes into the list. First element is a separate control:
3. Write custom control.
I don’t mention Adorners here, because they seems like advanced version of approach #1. Although combined with the last approach they may result in quite good solution…