Hi! I hope you guys can help me... I have a gridview that depending what row the user clicks for update, will change a template field to a radio button or a textbox. Now I was asked to have also a dropdown list that will contain comma delimited values and need to split it into dropdowns. The problem is that for the rows, the dropdown may have different comma delimited... In other words, the table has the type of dropdownlist and also some comma delimited values for each row
I have the textbox and radio working using panels inside the column on the datagrid to be visible or not, but when I have to show/hide the list of values in the gridview, i do not know how to make them to split from the comma delimited values that are in each of the rows...
partial example of how data comes
ID description typectr answerradio answertext answerdrop commadelimited
1 Analysis Text something
3 Transportation Radio Yes
7 Itinerary Text blahblah
9 Attending DropDown John,Mike,Iris
I need to split in the gridview John,Mike,Iris as a dropdown if the user is in that specific row and send the value selected to answerdrop
Thanks! yani