This question is locked. New answers and comments are not allowed.
What's the correct binding to associate a value in a custom control in a CellEditTemplate with the value shown in the grid? For example with this grid:
<telerik:RadGridView >
<telerik:RadGridView.Columns>
<telerik:GridViewMaskedTextBoxColumn Header="Test">
<telerik:GridViewMaskedTextBoxColumn.CellEditTemplate>
<DataTemplate>
<telerik:RadMaskedTextBox/>
</DataTemplate>
</telerik:GridViewMaskedTextBoxColumn.CellEditTemplate>
</telerik:GridViewMaskedTextBoxColumn>
</telerik:RadGridView.Columns>
</telerik:RadGridView>
I'm having an issue where values entered into the RadMaskedTextBox don't show up in the grid when editing is finished. Also, any value present in the grid doesn't automatically show up in the RadMaskedTextBox when editing begins. What's the proper way to associate the grid value with the custom control value?
<telerik:RadGridView >
<telerik:RadGridView.Columns>
<telerik:GridViewMaskedTextBoxColumn Header="Test">
<telerik:GridViewMaskedTextBoxColumn.CellEditTemplate>
<DataTemplate>
<telerik:RadMaskedTextBox/>
</DataTemplate>
</telerik:GridViewMaskedTextBoxColumn.CellEditTemplate>
</telerik:GridViewMaskedTextBoxColumn>
</telerik:RadGridView.Columns>
</telerik:RadGridView>
I'm having an issue where values entered into the RadMaskedTextBox don't show up in the grid when editing is finished. Also, any value present in the grid doesn't automatically show up in the RadMaskedTextBox when editing begins. What's the proper way to associate the grid value with the custom control value?