Is it possible to hide the overflow menu with a tab strip in Outlook view mode?
Regards,
Nadia
5 Answers, 1 is accepted
Could you please describe in greater details your requirement? What do you mean by "hide the overflow with a tab strip"? It will be best if you can support your description with a sketch. This will allow us to provide you with an adequate response.
I am looking forward to your reply.
Nikolay
the Telerik team
Sorry for the english mistake... The question was:
Is it possible to hide the overflow menu on a tab strip in Outlook view mode? We would like to use the outlook view mode but without the overflow menu.
Regards,
Nadia
Thank you for this clarification.
Yes, you can hide the overflow area of RadPageView in Outlook mode. In order to do this, you need to set the Visibility property of the OverflowItemsContainer to Collapsed:
((RadPageViewOutlookElement)
this
.radPageView1.ViewElement).OverflowItemsContainer.Visibility = ElementVisibility.Collapsed;
I hope this helps. All the best,
Nikolay
the Telerik team
You can find the answer to your question in the support ticket that you have submitted regarding the same topic. I am pasting the answer here in case our community is interested in it:
Yes, the desired functionality can be achieved by setting the Visibility property of the ItemsContainer to Collapsed.
public
Form1()
{
InitializeComponent();
//hide the items container
(
this
.radPageView1.ViewElement
as
RadPageViewBackstageElement).ItemContainer.Visibility = ElementVisibility.Collapsed;
}
Nikolay
the Telerik team