or
<
telerik:RadGridView
x:Name
=
"DataGrid"
ItemsSource
=
"{Binding PagedSource, ElementName=radDataPager}"
SelectedItem
=
"{Binding MandantOverviewSelected}"
AutoGenerateColumns
=
"False"
GridLinesVisibility
=
"None"
CanUserDeleteRows
=
"False"
CanUserInsertRows
=
"False"
IsReadOnly
=
"True"
CanUserSortColumns
=
"True"
ShowGroupPanel
=
"True"
AlternationCount
=
"2"
ShowColumnHeaders
=
"True"
RowIndicatorVisibility
=
"Collapsed"
CanUserFreezeColumns
=
"False"
FontSize
=
"11"
VerticalAlignment
=
"Stretch"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding MandantNummer}"
Header
=
"{x:Static LocalResources:ResSystemKonfigurationMandanten.Mandanten_ColumnTitle_MandantNummer}"
DataType
=
"{x:Type System:String}"
Width
=
"25*"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Bezeichnung}"
Header
=
"{x:Static LocalResources:ResSystemKonfigurationMandanten.Mandanten_ColumnTitle_Bezeichnung}"
DataType
=
"{x:Type System:String}"
Width
=
"25*"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Typ}"
Header
=
"{x:Static LocalResources:ResSystemKonfigurationMandanten.Mandanten_ColumnTitle_Typ}"
DataType
=
"{x:Type System:String}"
Width
=
"25*"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding DefaultspracheText}"
Header
=
"{x:Static LocalResources:ResSystemKonfigurationMandanten.Mandanten_ColumnTitle_Defaultsprache}"
DataType
=
"{x:Type System:String}"
Width
=
"25*"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>
<
telerikGrid:RadDataPager
x:Name
=
"radDataPager"
PageSize
=
"10"
IsTotalItemCountFixed
=
"True"
DisplayMode
=
"FirstLastPreviousNextNumeric"
Source
=
"{Binding MandantOverviewList}"
/>
</
StackPanel
>
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.