I am working on a web page that has a data grid and have a need to do the following:
- Have a column that is a drop down when the grid loads (no need to click edit)
- This column is bound to a column from the data query (everything up to this point works fine)
- I know need to add more values to this drop down from another dataset (so the user can change the value if required)
- These values come from a query to another table in the database. The values will be same for all the rows in the table, these values are based on a master key for the complete webpage.
As an example:
table 1 has:
Mangoes $12 Apricots $13 Peaches $14
This is on the grid.
The other table has:
Prices
12 13 14 15 16
I want these values from the prices table to appear in the drop down for table 1 in the data grid, with the current values as the selected item.
Any ideas will help. Thanks for the help.