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,
Hello Ted,
Thank you for your post. I have been looking into it and I can suggest you see this forum thread:
http://ko.infragistics.com/community/forums/t/64214.aspx
where Darrell explained how to bind the ComboBoxColumn’s ItemSource.
Hope this helps you.
Thanks, I got it works.
Is there a onselectchange in thte ig:ComboBox.
I want to do something when the ig:ComboBox change.
Thanks
You can see the sample Krasimir uploaded here:
http://ko.infragistics.com/community/forums/p/68090/345146.aspx
where he implements the functionality you want.