or
Hello
I have Combo Box column in grid with data member binding for id.
The problem that the Filter shows the Ids instead of the names
How can I show the name without change the data member binding or the filter?
See picture attached.
Best regards
Ehud.
<telerik:RadGridView x:Name="dailyGrid" <br> ItemsSource="{Binding PeriodListViewModel}"<br> ScrollMode="RealTime" <br> AutoGenerateColumns="False" <br> CanUserDeleteRows="False"<br> CanUserInsertRows="False"<br> CanUserReorderColumns="False"<br> CanUserResizeColumns="False"<br> CanUserSortColumns="False"<br> DataLoadMode="Asynchronous"<br> RowStyle="{StaticResource ResourceKey=RowStyle}" <br> RowIndicatorVisibility="Collapsed" EnableRowVirtualization="False" EnableColumnVirtualization="False"><br><br> <telerik:RadGridView.Columns><br> <telerik:GridViewDataColumn Header="Content" Width="*"><br> <telerik:GridViewDataColumn.CellTemplate><br> <DataTemplate><br> <Grid HorizontalAlignment="Stretch"><br> <Grid.RowDefinitions><br> <RowDefinition Height="200" /><br> </Grid.RowDefinitions><br> <telerik:RadRichTextBox VerticalScrollBarVisibility="Auto" VerticalAlignment="Stretch" VerticalContentAlignment="Stretch" <br> IsSpellCheckingEnabled="False" <br> x:Name="RTFBox" /><br> <telerikProvider:RtfDataProvider <br> Rtf="{Binding Path=Content}"<br> UpdateSourceTrigger="LostFocus" <br> RichTextBox="{Binding ElementName=RTFBox}" /><br> </Grid><br> </DataTemplate><br> </telerik:GridViewDataColumn.CellTemplate><br> </telerik:GridViewDataColumn> <br> </telerik:RadGridView.Columns><br> </telerik:RadGridView>-->Or
Is there any property which deals with headers styles?
Thanks,
-Narendra