Unplanned
Last Updated: 22 May 2024 15:02 by Allen
Allen
Created on: 22 May 2024 15:02
Category: DataGrid
Type: Feature Request
2
DataGrid: Provide support for multiple binding for DataMemberBinding property

Scenario: I want to bind two properties to a column, So I created Text column and set DataMemberBinding property to binding these two properties,

<telerik:DataGridTextColumn HeaderText="Country">
                    <telerik:DataGridTextColumn.DataMemberBinding>
                        <MultiBinding Converter="{StaticResource MultiConverter}">
                            <Binding Path="Country" />
                            <Binding Path="City" />
                        </MultiBinding>
 </telerik:DataGridTextColumn.

0 comments