Hi Telerik
I've been struggling over the weekend with a problem in our app. We currently use a pageview in stack mode to display a collection of items grouped into the pageview's pages. The pageview and its pages are generated programmatically and we use another control dock/filled into the pages to contain the items.
The items display fine in stack mode but the number of items to be displayed now requires a mechanism of display which allows scrolling. I thought I woud use explorerbar for this but when I change the mode of the pageview to explorerbar the controls containing the items no longer show up in the pages. The pageview and its pages do show up.
I have not been able to reproduce the problem in a simple project (the explorerbar idea works fine in the simple project). More strangely I only need to change
to
and the rest of the code in the app creates the correct pages, controls and items and displays them.
Are there any properties I need to set specific to the explorerbar mode which will allow the content of my pages to show when in explorerbar mode?
Have you come across this problem before?
Regards
Ian Carson
I've been struggling over the weekend with a problem in our app. We currently use a pageview in stack mode to display a collection of items grouped into the pageview's pages. The pageview and its pages are generated programmatically and we use another control dock/filled into the pages to contain the items.
The items display fine in stack mode but the number of items to be displayed now requires a mechanism of display which allows scrolling. I thought I woud use explorerbar for this but when I change the mode of the pageview to explorerbar the controls containing the items no longer show up in the pages. The pageview and its pages do show up.
I have not been able to reproduce the problem in a simple project (the explorerbar idea works fine in the simple project). More strangely I only need to change
RadPageView temp =
new
RadPageView() { Dock = DockStyle.Fill };
temp.ViewMode = PageViewMode.ExplorerBar;
RadPageView temp =
new
RadPageView() { Dock = DockStyle.Fill };
temp.ViewMode = PageViewMode.Stack;
Are there any properties I need to set specific to the explorerbar mode which will allow the content of my pages to show when in explorerbar mode?
Have you come across this problem before?
Regards
Ian Carson