I have a xamgrid with the add new row having one column with comboeditor
I want to populate the other column which is also a combo based on the value user selects in the first column(first columns combo)
How to achieve this?!
Its easy to change the style but i am not sure how to access the second combo to display values based on first combo in xamgrid?!
You probably set the first combobox value to a some property in your data item? Use the setter of that property to set the list for the second combobox. You'll need the list in your data item for the second combobox and bind that to the ItemsSource of the second combo. This method has always worked for me.
Can you elaborate this
Use the setter of that property to set the list for the second combobox
I am using the Selection_Changed event of the first combo would that suffice it
Do you have a small sample?!