I have read-only RadGridView columns displaying error messages.
They tend to be long, but due to the read-only attribute, I cannot navigate to the end of them.
Other than extending the column width, is there any way to navigate the whole cell width, or to set a wrapper property?
In my RadGridView I group data by two columns: first by column1 and then by column2. When I set ShowGroupFooters="true" I end up with two footers - one for column1 and another for column2. How can I hide footers for the nested groups (over column2) and leave only footers for the groups over column1?
thank you
<telerik:RadGridView x:Name="ResultsView" IsReadOnly="True" ItemsSource="{Binding Path=Dossiers,Mode=OneWay}" AutoGenerateColumns="False" SelectedItem="{Binding CurrentDossier, Mode=OneWayToSource}" Grid.Column="0" Grid.Row="1"> <telerik:RadGridView.InputBindings> <MouseBinding MouseAction="LeftDoubleClick" Command="{Binding SearchCommand}" CommandParameter="{Binding ElementName=ResultsView,Path=SelectedCells,Mode=OneWay}"></MouseBinding> </telerik:RadGridView.InputBindiIngs>hello Telerik,
I'm trying to use RadWindow AS user control
I'm having a problem with RadWIndow's Show() method.
I was going over your 'Use RadWindow as User Control' explanation and there is a part where is says :
RadWindowControl window = new RadWindowControl();
window.Show();
in my code, the way that my RadWIndow (CapabilityLayer) created is from ResourseDictionary:
<ResourseDictionary>
<DataTemplate DataType="{x:Type localVM:CapabilityViewModel}">
<localVIew:CapabilityLayer/>
</DataTemplate>
</ResourseDictionary>
I'm only using "new" in order to create CapabilityViewModel but CapabilityLayer is automatically created, this is why I dont know where to invoke the Show() method I dont have instance to CapabilityLayer.xaml .
at the moment no errors or exceptions it just that the window is not shown
I tried to invoke Show() in the RadWindow's OnLoad event but it still no show.
I tried to find the radwindow through Application.Current.Windows but I didnt find it there.
where is the right place to put this method ? I saw that some time it is recommended to use ShowDIalog() what is the different? Show() is where RadWindow create or it is only some kind of visibility set?
thank you
I write C# WPF MVVM Prism 6 modular application. One of the modules has a view (Prism UserControl) with RadChartView. In this module I add references to the following assemblies: Telerik.Windows.Controls (ver. 2016.2.613.45), Telerik.Windows.Controls.Chart (ver. 2016.2.613.45), Telerik.Windows.Data (ver. 2016.2.613.45). (Just recently I upgrade Telerik binaries to the new version.) Then I add RadChartView into a view (Prism UserControl) that is in this module. But when I navigate to this view (where RadChartView is) then System.Windows.Markup.XamlParseException exception in PresentationFramework.dll has place. The error text is: Could not load file or assembly 'telerik.windows.controls.chart'. Why this error has place?
(1) Define a new list style
(2) Apply it for a few times
(3) Change Style dialog need a few times click to open, depends on how much times the list style applied.
Any walk around for this?
Dear Telerik Team,
I am looking for a tool similar to "Facebook ads scheduler" in Telerik kindly suggest (http://www.socialmediaexaminer.com/wp-content/uploads/2014/08/fr-image-7.jpg). If the tool does not exists kindly suggest appropriate wpf tools needs to be used. Is there any wpf project already exists on it?
Best Regards,
SYED

Hi,
I am trying to do the following:
1) User types in a number which isn't in the dropdown and presses enter. I want to pass this number as a command parameter to my command and the value they typed should stay in the text field - even if that number isn't in the dropdown.
2) If a user selects a value already in the dropdown, then that should be passed as a command parameter to my command.
So far I have been unable to do this as the only values that get passed are the ones selected from the dropdown, I have attached my xaml below:
1.<telerik:RadRibbonComboBox CanAutocompleteSelectItems="False" CanKeyboardNavigationSelectItems="False" DropDownClosed="RadComboBox_OnDropDownClosed" IsFilteringEnabled="True" CommandParameter="{Binding Text, RelativeSource={RelativeSource Self}}" IsEditable="True" IsReadOnly="False" MaxDropDownHeight="400" OpenDropDownOnFocus="True" StaysOpenOnEdit="True" telerik:RadRichTextBoxRibbonUI.RichTextCommand="{Binding MyCommand}" Width="65">2.<telerik:RadRibbonComboBoxItem Content="8"/>3.<telerik:RadRibbonComboBoxItem Content="9"/>4.<telerik:RadRibbonComboBoxItem Content="10"/>5.<telerik:RadRibbonComboBoxItem Content="11"/>6.</telerik:RadRibbonComboBox>
Any help would be much appreciated, thank you.

Hello
how can I use keys PageUp and PageDown in the DropDown of an AutoCompleteBox for navigation?
In the DropDown of an Combox it works but not in an AutoCompleteBox.
Thanks