Declined
Last Updated: 11 Aug 2016 14:05 by ADMIN
ADMIN
Telerik Admin
Created on: 03 Jun 2011 15:09
Category: RibbonView
Type: Feature Request
2
RibbonView: Add panel element to the TabStripAdditionalContent property
Add panel element to the TabStripAdditionalContent property. This way it will be easier for the users to add content.

Declined: The existing API for the TabStripAdditionalContent property (of type Object) easily allows the users to customize and insert content depending on their requirements. For instance if you want to use data from ViewModel and list all of its Items you could use the following code:
<telerik:RadRibbonView.TabStripAdditionalContent>
	<ItemsControl ItemsSource="{}" >
		<ItemsControl.ItemsPanel>
			<ItemsPanelTemplate>
				<StackPanel Orientation="Horizontal" />
			</ItemsPanelTemplate>
		</ItemsControl.ItemsPanel>
	</ItemsControl>
</telerik:RadRibbonView.TabStripAdditionalContent>
0 comments