Dear Telerik Team,
I am using telerik Rad Grid View control and having issue with below code.
I am trying to set the background color of a row on mouse over.
Issue is On mouse over below Setter property 'Background' does not set the background color of the row instead it sets the border color. Pl advise on the correct Implementation.
<telerik:RadGridView x:Name="radGridView" Margin="8,100,0,0"
ItemsSource="{Binding Source={StaticResource AuthorsData}}"
IsFilteringAllowed="True"
AutoGenerateColumns="True" Grid.Column="1" >
<telerik:RadGridView.RowStyle>
<Style TargetType="telerik:GridViewRow">
<Setter Property="MinHeight" Value="20"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="Green"/>
<Setter Property="Foreground" Value="Black"/>
</Trigger>
</Style.Triggers>
</Style>
</telerik:RadGridView.RowStyle>
</telerik:RadGridView>
Thanks,
Vaibhav.
Hi
We have a radoutlookbar with some items in it When te user click on the minimize/restore-button ((1) in attached image) it works perfect, the bar and all it content moves out and in. (see attached image).
When user clicks on the "header" of the outlookbar ((2) in attached image) strange things happen. First click is most often than only the first user control in the first item slides out, after that, sometimes the entire outlookbar is stuck half minimized and we have to restart the application.
First of all, Im I doing something wrong in my xaml (below)?
If not, is there any setting where I can make the rest of the outlookbar to minimiza/restore or could I catch the event and programmatically restore it? (We are using te MVVM approach)
--xaml---------------------------------------
<telerik:RadOutlookBar DockPanel.Dock="Right" Width="600" IsVerticalResizerVisible="True" MinimizedButtonContent="Details" IsMinimized="True" >
<telerik:EventToCommandBehavior.EventBindings>
<telerik:EventBinding EventName="SelectionChanged" Command="{Binding DrawerItemChangedCommand}" PassEventArgsToCommand="True"/>
<telerik:EventBinding EventName="Restored" Command="{Binding ExpandCollapseDrawerCommand}" PassEventArgsToCommand="True"/>
<telerik:EventBinding EventName="Minimized" Command="{Binding ExpandCollapseDrawerCommand}" PassEventArgsToCommand="True"/>
</telerik:EventToCommandBehavior.EventBindings>
<modelview:OneView DataContext="{Binding OneViewModel}"/>
<telerik:RadOutlookBarItem Header="Another">
<modelview:AnotherView DataContext="{Binding AnotherViewModel}" />
</telerik:RadOutlookBarItem>
<telerik:RadOutlookBarItem Header="LastViewIPromise">
<moCompliance:LastView DataContext="{Binding LastViewModel}" />
</telerik:RadOutlookBarItem>
</telerik:RadOutlookBar>
-------------------------------------------------
Thanks in advance, Robert

Hi,
I have a FilePathPicker with DialogType="OpenFile". Is there a way to set a default directory so that wen a user wants to pick a file, the FilePathPicker opens the the dialog with the files in this directory ?
Regards,
Hans

Bonjour
Lorsque j'ouvre un PDF à l'aide du bouton "Ouvrir" de la radtoolbar DE PdfViewer, j'aimerais obtenir le chemin du PDF sélectionné. Quelle est la meilleure façon à procéder?
Merci

We are currently setting up some tests with Microsofts UI Automation.
For my next steps I'm searching for a way to implement selection for GridView rows.
So far I couldn't really find any documentations how to deal with this with Telerik controls in detail.
Currently I access the grid, grid row and grid row cells as follows:
AutomationElement radGridView = Element.TryFindId (OrderConstants.ORDER_GRID_ID);AutomationElementCollection orderRowElements = radGridView.FindAll ( TreeScope.Descendants, new PropertyCondition (AutomationElement.ClassNameProperty, "GridViewRow"));int rowId = 0;foreach (AutomationElement orderRowElement in orderRowElements){ ((SelectionItemPattern) orderRowElement.GetCurrentPattern(SelectionItemPattern.Pattern)).Select() // Is Not Supported Pattern AutomationElement elem = orderRowElement.TryFindId ($"Cell_{rowId++}_0"); ((SelectionItemPattern) elem.GetCurrentPattern(SelectionItemPattern.Pattern)).Select() // Is Not Supported Pattern}
How can I select
How is the RadGridView intended to be used in a automated way?
Currently I'm using .Net Framework 4 with Telerik Version 2018.3
Any help is appreciated, thanks.

Hello!
I'm trying to figure out how to get the contents of my grid to sort by a property member that is not exposed to the UI via a column. The item source for my grid comes from a collection view defined on my ViewModel. This collection view has sort descriptors defined in C#, one of which is to sort by a boolean property that is not bound to a column on the grid, but that sort descriptor is not honored at run-time.
Any assistance is appreciated.
We have this sort of filter
private CompositeFilterDescriptor _deletedNewFilterDescriptor = new CompositeFilterDescriptor()
{
LogicalOperator = FilterCompositionLogicalOperator.Or,
FilterDescriptors =
{
new FilterDescriptor("Column1", FilterOperator.IsNotEqualTo, "MyState"),
new FilterDescriptor("Column2", FilterOperator.IsNotEqualTo, "YourState")
}
};
and at some point when we refresh the grid, the rows that should be filtered get displayed. So we have to do something like this which also fails on occasions
void grd_loaded(object sender, RoutedEventArgs e)
{
// For some reason, adding filters in constructors gets cleared somewhere, so add in Loaded methods.
if (!grd.FilterDescriptors.Contains(_deletedNewFilterDescriptor))
grd.FilterDescriptors.Add(_deletedNewFilterDescriptor);
}
Any help would be appreciated. Because we will have to filter those rows at the SQL fetching time and not afterwards. This means changing the existing code.
