This is a migrated thread and some comments may be shown as answers.

How can I size a RadPanelBarGroupElement with a splitter?

5 Answers 132 Views
Panelbar (obsolete as of Q2 2010)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
bute
Top achievements
Rank 1
bute asked on 26 Dec 2007, 09:59 PM
Greetings,

I have a RadDockPanel with a RadPanelBar on it, with multiple RadPanelBarGroupElements on the RadPanelBar.  I'd like a horizontal splitter between each RadPanelBarGroupElement (as exists between/attached to multiple DockPanels for example, making each dock panel sizable)...So I can allow the user to size each RadPanelBarGroupElement...as well as collapse them which i'm currently allowing...

Thoughts?

Thanks,
GBute

5 Answers, 1 is accepted

Sort by
0
Boyko Markov
Telerik team
answered on 27 Dec 2007, 12:02 PM
Hi Gray,

Thank you for writing.

We don't have this functionality built-in RadPanelBar and currently there is no way to work around it. Implementing this feature would require quite some time, so we ask you to tell us if this feature is a must for you.

If so, we will consider adding support for it in future versions of RadPanelBar.

Please write us back if you have any other questions.

Best wishes,
Boyko Markov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
bute
Top achievements
Rank 1
answered on 28 Dec 2007, 05:53 PM

Hello Boyko, thanks for the response...This is a must for us...for now we'll attempt to get around it by putting dock panels inside dock panels...

Though with that approach we lose the nice collapsible chevron we had with the RadPanelBarGroupElements.

Is there a simple way to make the dock panel have the collapsible chevron?

Thanks again

0
Boyko Markov
Telerik team
answered on 02 Jan 2008, 01:09 PM
Hello bute,

Please, refer to the codeblock below. It adds a RadButton to a dockPanel's caption element (where dockPanel is an isntance of DockPanel):

DockPresenterCaptionElement captionElement = (dockPanel.DefaultPresenter as DockPresenterControl).DockPresenterElement.Children[2].Children[0] as DockPresenterCaptionElement;
RadButtonElement buttonElement = new RadButtonElement();
buttonElement.Text =
"Button";
buttonElement.Alignment =
ContentAlignment.MiddleRight;
captionElement.Children[2].Children.Insert(0, buttonElement);

What you should do is: add a chevron image to the button's image property.
You can find the chevron images in collapsed and expanded state attached.

Contact us again with any other questions you have.

Sincerely yours,
Boyko Markov
the Telerik team


Instantly find answers to your questions at the new Telerik Support Center
0
Alcatraz
Top achievements
Rank 1
answered on 25 May 2010, 10:08 AM
Hi,

With regards to the original question by bute, do you have any feature in RadPanelbar control (Q12010 SP1) which can allow having a splitter.

Thanks
Kris
0
Nikolay
Telerik team
answered on 27 May 2010, 05:33 PM
Hi Alcatraz,

The only splitter that RadPanelBar implements is the one between the content panel and the group captions in OutlookStyle. By dragging this splitter you can hide/show groups and increase/decrease the size of the content panel. For additional information about the OutlookStyle, please refer to our Examples application, section PanelBar >> Layout, and select the Outlook Nav Pane option.

Kind regards,
Nikolay
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
Panelbar (obsolete as of Q2 2010)
Asked by
bute
Top achievements
Rank 1
Answers by
Boyko Markov
Telerik team
bute
Top achievements
Rank 1
Alcatraz
Top achievements
Rank 1
Nikolay
Telerik team
Share this question
or