Posted
on Feb 6, 2012
(permalink)
Hi,
I am designing a grid that has three columns, and two of those are ComboBoxColumn and the last column is an expression column. I would like to get all three columns working with each other, which means selection from column A would determines the available selection choices in column B, and column C would display the number that binds to the selection of column B. To better illustrate my design, considering the grid display information about continents, countries, and population, where column A (continents) controls the selection of countries in column B and column C displays the number of population from the country selection from column B. So far I have gotten both of the column A and B working, but I have difficulty to get the last column bind to the selection from column B. I have my column B's DataMemberBinding binds to population, and set the expression for column C binds to population too. However, once I try to test my app, the app would crash. How can I get my design working? Thanks.