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


Hello,
I am currently trying to improve the UX of my application which uses RadGridViews.
At a high level, my current workflow is as follows: I my set RadBusyIndicator binding to true, fire a background worker to perform some work on a datatable (which is binded to the RadGridView) then set RadBusyIndicator binding to false on worker completed.
There are two problems I am encountering:
1) When the datatable has changed, the updating of the RadGridView blocks the UI thread, causing RadBusyIndicator to freeze. If the datatable is large enough, this can effectively freeze the application for quite some time. What would be the best way to show some kind of progress dialog for this?
2) The first time the RadGridView loads, the data_loaded event is fired. However when the datatable has changed and the RadGridView has updated, data_loaded event isnt fired. Is there an event I can monitor for this?
Setting focus programatically or on xaml declaration doesnt fit its purpose, when using the material theme.
The textbox gets the carret, but its not blinking, keypresses doesnt change the text, and the "selected color bar" in the bottom does not fill up.
suggestions??
[code]
<telerik:RadPasswordBox x:Name="txt" Background="White" WatermarkContent="Digite a Senha" HorizontalContentAlignment="Center" Margin="20 0 20 0" WatermarkBehavior="HideOnTextEntered">
<telerik:RadWatermarkTextBox.InputBindings>
<KeyBinding Command="{Binding ValidarSenhaCommand}" CommandParameter="{Binding ElementName=txt}" Key="Enter" />
</telerik:RadWatermarkTextBox.InputBindings>
</telerik:RadPasswordBox>
[/code]
[code]
private void UserControl_Loaded(object sender, RoutedEventArgs e)
{
txt.Focus();
}
[/code]