Can you please show how to code for a checkbox list in a RowEditTemplate...I'm using a Sql data source to populate checkbox list. Thx!
Hi davefevold,
Are you trying to use a checkbox list for one column? To choose among multiple items and then have them concactenated with a comma? One option would be to use a WebDropDown. You could turn on checkbox selection to accomplish this. If you do want this, there is no default code for it in the grid. You would have to code it yourself. You'd need a function that takes in the value, splits it, and then checks the appropriate checkboxes. And going back, you'd need to iterate through the checkboxes to build the string to give to the grid.
regards,David Young
Thanks for the reply David. I tried using the WebDropDown within the RowEditTemplate but I could not make the control drop down...I could get it to work outside of the RowEditTemplate but not inside of it...any thoughts as to why?