I need to have a status dropdown in each row of my RadGrid. This is something I want displayed and functional at all times, not just in edit mode. What I've done so far is use a template column with a dropdownlist inside, hard-coding the 3 status options. On the radgrid_ItemDataBound I grab the data row and set the selected value of the dropdown based on the data from the server. Now I need to fire and update when the dropdown is changed. I can point the dropdownlist to fire a Public Sub from the OnSelectedIndexChanged property but I need to it pass another value from the datarow. My first thought was to programmatically add in the status items w/ a unique id pulled from the database attached as the corresponding value but for some reason, it no longer fires the OnSelectedIndexChanged event.
Any ideas on how this can be achieved?
Any ideas on how this can be achieved?