or
Hello
I generate columns on the fly and give cell template and cell edit template.
After I changed value in the cell edit the grid generate default cells for row
Instead of my cell template.
I click on the cell edit and go out it generate my cell template.
Is this known problem?
Best Regards
Ehud
<
telerik:RadListBox
ItemsSource
=
"{Binding MasterViewModel.ElementTypeCollectionView}"
Margin
=
"3"
BorderThickness
=
"0"
SelectionMode
=
"Extended"
>
<
telerik:RadListBox.ItemTemplate
>
<
DataTemplate
>
<
CheckBox
Checked
=
"CheckBox_Checked"
IsChecked
=
"{Binding RelativeSource={RelativeSource AncestorType={x:Type telerik:RadListBoxItem}}, Path=IsSelected}"
>
<
CheckBox.Content
>
<
TextBlock
>
<
TextBlock.Text
>
<
MultiBinding
StringFormat
=
"{}{0} {1}"
>
<
Binding
Path
=
"ElementTypeCode"
/>
<
Binding
Path
=
"Description"
/>
</
MultiBinding
>
</
TextBlock.Text
>
</
TextBlock
>
</
CheckBox.Content
>
</
CheckBox
>
</
DataTemplate
>
</
telerik:RadListBox.ItemTemplate
>
</
telerik:RadListBox
>