I have a simple RadPanelBar with ExpandMode="Single" where every item contains a TextBox. Is it possible to enable the user to tab between the TextBoxes?
Let's say I have this GUI:
<Grid> <Grid.RowDefinitions> <RowDefinition Height="25" /> <RowDefinition Height="10" /> <RowDefinition Height="200" /> <RowDefinition Height="10" /> <RowDefinition Height="25" /> </Grid.RowDefinitions>
<TextBox Name="TextBoxA" Grid.Row="0" />
<telerikControls:RadPanelBar Grid.Row="2" Orientation="Vertical" ExpandMode="Single" > <telerikControls:RadPanelBarItem Header="Test 1" IsExpanded="True" > <TextBox Name="TextBoxB1" /> </telerikControls:RadPanelBarItem> <telerikControls:RadPanelBarItem Header="Test 2" IsExpanded="True" > <TextBox Name="TextBoxB2" /> </telerikControls:RadPanelBarItem> </telerikControls:RadPanelBar>
<TextBox Name="TextBoxC" Grid.Row="4" /></Grid>
This is my desired behavior:
Is this possible?
Hi,
I read that a Silverlight version of the ScheduleView is comming up. It looks like the ScheduleView has a some advantages over the old RadScheduler, which would be useful in the Silverlight project I'm currently working on. I'm trying to decide which component to use, would it be possible to release a development build of the ScheduleView for Silverlight?

chart1 = New RadChart chart1.SamplingSettings.SamplingThreshold = 0Dim sr As New Telerik.Windows.Controls.Charting.DataSeries sr.Definition = New Bar3DSeriesDefinition Dim dtpt As Telerik.Windows.Controls.Charting.DataPoint dtpt = New Telerik.Windows.Controls.Charting.DataPoint dtpt.YValue =1000 dtpt.XCategory = "India"sr.add(dtpt) dtpt = New Telerik.Windows.Controls.Charting.DataPoint dtpt.YValue =2500 dtpt.XCategory = "Saudi Arabia"sr.add(dtpt) dtpt = New Telerik.Windows.Controls.Charting.DataPoint dtpt.YValue =1000 dtpt.XCategory = "United States of America"sr.add(dtpt) With chart1 .DefaultView.ChartArea.DataSeries.Add(sr) .DefaultView.ChartArea.AxisX.LabelRotationAngle = 90 .FontSize = 8 End With
System.Windows.Data Error: 40 : BindingExpression path error: 'mean' property not found on 'object' ''DataRow' (HashCode=22373539)'. BindingExpression:Path=mean; DataItem='DataRow' (HashCode=22373539); target element is 'TextBlock' (Name=''); target property is 'Text' (type 'String')
<
telerikGrid:RadGridView x:Name="radGridView" Grid.Row="0" ItemsSource="{Binding DataTable}" AutoGenerateColumns="True"
ShowGroupPanel="False" RowDetailsVisibilityMode="VisibleWhenSelected" IsReadOnly="True"
AutoGeneratingColumn="radGridView_AutoGeneratingColumn"
RowIndicatorVisibility="Collapsed" IsSynchronizedWithCurrentItem="False">
<telerikGrid:RadGridView.RowDetailsTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal"
Margin="10,10,10,10">
<TextBlock Text="Average Measure Value: " />
<TextBlock Text="{Binding mean}" />
</StackPanel>
</DataTemplate>
</telerikGrid:RadGridView.RowDetailsTemplate>
</telerikGrid:RadGridView>
