After loading my layout that was saved with unpinned panes, I notice that these panes are not loaded as 'unpinned'. Moreover, these panes no longer seem dockable.
When I look at the generated XLM, I see that IsDockable="False" and that there's nothing to indicate that the pane is unpinned (ie. IsPinned="False"). Is this a bug? How can I take care of this?
GridView Paging bug when using custom row control template element loaded.
When the first element is loaded and its set to IsEnabled = false then the first element on the next page is also set to IsEnabled to false.
bet when i go to the page number 3 and go back then is everything ok.
XAML:
<CheckBox Name="assembledCheckBox"
Margin="0,0,0,0"
FontWeight="Bold"
FontSize="10"
Grid.Row="1"
Grid.Column="1"
VerticalAlignment="Center"
HorizontalAlignment="Left" Content="Assembled"
IsChecked="{Binding a_status}" Loaded="assembledCheckBox_Loaded"
>​
private void assembledCheckBox_Loaded(object sender, RoutedEventArgs e)
{
CheckBox temp = new CheckBox();
temp = (CheckBox)sender;
if (temp.IsChecked == true)
{
temp.IsEnabled = false;
}
}​
Hi all,
When the user clicks somewhere on the chart area I need to be able to add a data point there.
I didn't find anything like that on the documentation but I was wondering if there is at least a work around for this, this is really important for my application.
Thanks!
I have an application which makes large use of the RadGridView. Mostly things work fine however uses have reported that sometimes after using the grid the filters will stop working. I have also seen this myself however it seems to not be consistent.
I have tried several things myself however once in this frozen state the filters do not respond however all the rest of UI works normally. I have tried things like
Grid.FilterDescriptors.Clear(); ​and Grid.Rebind(); Nothing seems to work
In the cases where it is stuck I will clear the filters using the code above and immediately after this the filter descriptors are not clear. This also happens in the UI portion of the filter.
Any suggestions?

Dear Team,
I want to persist radtreeview state. How can i achieve this behavior. Here is my custom XAML code. please help to advise.
<telerik:RadTreeView Margin="8" x:Name="xTreeView" ItemsSource="{Binding Categories,Mode=TwoWay}" IsLineEnabled="True" telerik:TreeViewSettings.DragDropExecutionMode="Legacy" mouse:MouseDoubleClick.Command="{Binding ShowItemCommand}" mouse:MouseDoubleClick.CommandParameter="{Binding ElementName=xTreeView,Path=SelectedItem}" ScrollViewer.VerticalScrollBarVisibility="Visible" ScrollViewer.HorizontalScrollBarVisibility="Visible" IsDragDropEnabled="True" AllowDrop="True" telerik:PersistenceManager.StorageId="treeViewInfotab"> <telerik:RadTreeView.ItemTemplate> <HierarchicalDataTemplate> <StackPanel Orientation="Horizontal"> <CheckBox IsChecked="{Binding IsChecked, Mode=TwoWay}" telerik:StyleManager.Theme="Office_Black" /> <TextBlock VerticalAlignment="Center" Text="{Binding Name}" /> <TextBlock Text="{Binding InfoTabItemsSourcePath}" Visibility="Hidden" /> </StackPanel> </HierarchicalDataTemplate> </telerik:RadTreeView.ItemTemplate> </telerik:RadTreeView>Thank you.
Regards,
Prabakaran

1. While in the Week view, click on a slot under Day X.
2. Then click on the header of another day, say Day Y (where Y is different than X).
This will bring you back to the Day view for Day Y
3. Now double-click immediately on any slot to create an appointment. The start time will show the date/time of the slot selected at step 1, not that of the slot you double-clicked on.
Hello,
I have a gridview below. The code "await Task.Run(() => { View.clear(); });" throw an exception:"The calling thread cannot access this object because a different thread owns it." But if I remove "<telerik:GridViewSelectColumn/>", it​ works, please tell me how to fix it? Thanks.
<telerik:RadGridView Name="view" ShowGroupPanel="False" Margin="10" IsReadOnly="True" ItemsSource="{Binding View}" AutoGenerateColumns="False" SelectionMode="Extended"> <telerik:RadGridView.RowStyle> <Style TargetType="telerik:GridViewRow"> <Setter Property="IsSelected" Value="{Binding IsSelected, Mode=OneWayToSource}"/> </Style> </telerik:RadGridView.RowStyle> <telerik:RadGridView.Columns> <telerik:GridViewSelectColumn/> <telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding Name}"/> </telerik:RadGridView.Columns> </telerik:RadGridView>