Hi, i would like to use your Telerik Editor, which u describing in WPF Controls Examples. I took code from your xaml and xaml.cs. And my app want Telerik.Windows.Controls.QuickStart and ApplicationThemeManager too.
In this case how it is possible to use it?
Thanks for replays.

I would like to catch TextChanged from RadRichTextBox, i checked and that event did not exist. So i tried to use DocumentChanged, but it did not fire too, when im typing text in rtb.
01.<telerik:RadRichTextBox HorizontalScrollBarVisibility="Auto" MinHeight="80" VerticalScrollBarVisibility="Auto"02. x:Name="Rtb"03. Background="White" AcceptsTab="True" Loaded="Rtb_Loaded" FontSize="12"04. IsEnabled="{Binding CanEdit, UpdateSourceTrigger=PropertyChanged}">05. <i:Interaction.Triggers>06. <i:EventTrigger EventName="DocumentChanged">07. <i:InvokeCommandAction Command="{Binding DocumentChangedCommand}"08. CommandParameter="{Binding ElementName=Rtb, Path=Document}" />09. </i:EventTrigger>10. </i:Interaction.Triggers>11. </telerik:RadRichTextBox>
I am having trouble with the order of events being called when using the custom keyboard command example code.
I want to change the behavior of the enter key to exactly what the example is doing. This works great until I add a cell datatemplate and an edit cell data template.
Before changing the example everything is working fine. The behavior is as follows:
1. Start editing a value
2. Using the mouse set focus on some other field( thus comiting the edit) OR pressing enter on the keyboard
3. The property setter for statdiumcapacity is called
4. The ClubsGrid_OnCellEditEnded callback is called.
After adding in a cell template and an edit cell template as follows:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:my="clr-namespace:CustomKeyboardCommandProvider"
Title="MainWindow" Height="300" Width="700">
<Window.Resources>
<my:MyViewModel x:Key="MyViewModel"/>
<DataTemplate x:Key="DataTemplate">
<TextBlock Text="{Binding StadiumCapacity}" TextAlignment="Center"/>
</DataTemplate>
<DataTemplate x:Key="EditDataTemplate">
<TextBox Text="{Binding StadiumCapacity}" />
</DataTemplate>
</Window.Resources>
<Grid DataContext="{StaticResource MyViewModel}">
<telerik:RadGridView Name="clubsGrid" BeginningEdit="ClubsGrid_OnBeginningEdit" CellEditEnded="ClubsGrid_OnCellEditEnded" AutoGenerateColumns="False"
ItemsSource="{Binding Clubs}">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="Stadium Cap" Width="200" CellTemplate="{StaticResource DataTemplate}" CellEditTemplate="{StaticResource EditDataTemplate}" />
</telerik:RadGridView.Columns>
</telerik:RadGridView>
</Grid>
</Window>
Now the sequence changes. The mouse setting focus away from the edit works as before. However, the enter key does not
1. Start editing a value
2. Press enter on the keyboard while still editing.
3. The ClubsGrid_OnCellEditEnded callback is called.
4. The property setter for statdiumcapacity is called
The order is reversed? What am I missing to make the behaviour the same using datatemplates as not using datatemplates
Hi,
I tried using the export functionality of the RadGridView and I found that the ExportAsync generates an empty file. When I use the plain Export method instead, it works correctly. Can someone take a look at this and confirm whether it works or not.
Thanks.

Greetings,
when using WPF UI with a tablet we occur following problem. When touching a AutoCompleteBox nothing happens.
Hope someone can enlighten me, since every other control seems to work.
Regards
André
Hi there,
the CloseButton in SearchPanel currently has no effect. The SearchPanel stays open.
2018.1.220.45
Best regards
At present, I can use "PaneStateChange" to set the size of floating window, or "ReatinPaneSizeMode" to keep floating size same with previous docking size.
My question is that if I dock the floating window back, how can I set the docking size instead of the default stretching along the horizontal or vertical direction.
Or is there any parameter to indicate the docking process finished so that I can reset the pane size after docking.
Thanks
Lianyang
Currently, i am working on current cell in radgridview to reset to 0 row and 0 column.
Thanks,
Amit Kumar Kulha
