Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
645
ig:ComboBoxColumn in ig:XamGrid
posted

Hi,

xmlns:ig=http://schemas.infragistics.com/xaml

I have <ig:ComboBoxColumn> in the <ig:XamGrid.> All the itemsources are binding in the ViewModels

<ig:XamGrid ItemsSource="{Binding CurrentSchedule}">

        <ig:ComboBoxColumn ItemsSource="{Binding OptionsList}" SelectedValuePath="Name" DisplayMemberPath="Name"> >

</ig:XamGrid.>

For the ItemsSource of ig:XamGrid, I am binding the data in the viewmodels (call a webserices get the data and it worked -didaplay the data in the grid)

<ig:XamGrid HorizontalContentAlignment="Stretch" ItemsSource="{Binding CurrentSchedule}"

I try to do the same for the <ig:ComboBoxColumn ItemsSource="{Binding OptionsList}" SelectedValuePath="Name" DisplayMemberPath="Name"> however the data did not show in the combobox.

 

Please help!!!

And also is there a function onselectchange in the ComboBoxColumn,