This question is locked. New answers and comments are not allowed.
hi ,
i have tab control & scheduler
how can set the retio between RadScheduler and
RadTabControl to 30% - 70% of the page?
i have tab control & scheduler
<Grid.RowDefinitions> <RowDefinition Height="*" /> <RowDefinition Height="*" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <telerik:RadScheduler Name="radScheduler1" VerticalAlignment="Top" ViewMode="Week" IsReadOnly="false" AppointmentEditing="radScheduler1_AppointmentEditing" AppointmentDeleting="radScheduler1_AppointmentDeleting" HorizontalContentAlignment="Stretch" AppointmentEdited="radScheduler1_AppointmentEdited" IsInlineEditingEnabled="True" Grid.RowSpan="3" AllDayAreaHeight="50"> </telerik:RadScheduler> <telerik:RadTabControl Grid.Row="3" Name="GeneralTabControl" SelectionChanged="RadTabControl_SelectionChanged"> <telerik:RadTabItem Name="Items" Header="Sales action items"> <telerik:RadGridView FlowDirection="LeftToRight" SelectionMode="Single" AutoGenerateColumns="False" telerik:StyleManager.Theme="Simple" Name="SalesActionItems" VerticalAlignment="Stretch" IsReadOnly="True" RowLoaded="SalesActionItems_RowLoaded" Grid.Row="1" > <telerik:RadGridView.Columns> <telerik:GridViewDataColumn DataMemberBinding="{Binding fullname}" HeaderCellStyle="{StaticResource Salesname}" Header="Full Name" /> </telerik:RadGridView.Columns> </telerik:RadGridView> </telerik:RadTabItem> <telerik:RadTabItem Name="Customer" Header="Customers"> <telerik:RadGridView VerticalAlignment="Stretch" FlowDirection="LeftToRight" SelectionMode="Single" AutoGenerateColumns="False" telerik:StyleManager.Theme="Simple" Name="Customers" IsReadOnly="True" RowLoaded="radGridView2_RowLoaded" Grid.Row="1"> <telerik:RadGridView.Columns> <telerik:GridViewComboBoxColumn DataMemberBinding="{Binding fullname, Mode=TwoWay}" HeaderCellStyle="{StaticResource CustomerFullName}" Header="Full Name" DisplayMemberPath="Name" SelectedValueMemberPath="Code" > </telerik:GridViewComboBoxColumn> </telerik:RadGridView.Columns> </telerik:RadGridView> </telerik:RadTabItem> </telerik:RadTabControl> </Grid>how can set the retio between RadScheduler and
RadTabControl to 30% - 70% of the page?