Select an item in the column of ComboBox. When I select another row, the previously selected item is deleted.
What's happening? Annex code here.
Thank you.
XAML:
<
TelerikGridView:RadGridView Name="radGriViePartidasPM" Grid.Row="2" Height="150"
ShowGroupPanel="False"
AutoGenerateColumns="False">
<TelerikGridView:RadGridView.Columns>
<
TelerikGridView:GridViewComboBoxColumn UniqueName="colBodOrigProducto" Header="Bodega"
SelectedValueMemberPath="Clave"
DisplayMemberPath="Descripcion"/>
</
TelerikGridView:RadGridView.Columns>
</TelerikGridView:RadGridView>
VB.NET
panPartidas.radGriViePartidasPM.ItemsSource = e.Result
DirectCast(Me.radGriViePartidasPM.Columns("colBodOrigProducto"), GridViewComboBoxColumn).ItemsSource = listadoBodegas
listadoBodegas is a List(Of CLBodega), CLBodega is an object with two properties: Clave and Descripcion
when I select an item from the combobox, how I can know which items are selected?
Thanks! =)
Atte: Carlos Rodríguez
Developer Freelance