Tom
|
| Posted: 06/27/2003, 5:21 AM |
|
I've built an application in which after a user selects from a radio list and commits their answer, I disable the control. Unfortunately, once the control is disabled, the text associated with each radio button is grayed out so much that they are pretty much unreadable. I've even tried various backgrounds but nothing has been acceptable. Once disabled, the control does not allow you to change the foreground font. Soooo.... I still want to disable the radio list but still leave the text in normal mode so it is readable. I'm looking for ideas. I've tried just making a vertical radio list with just buttons in one table cell and putting the text in an adjoining table cell but lining up the two has not been successful.
|
|
|
 |
Tom
|
| Posted: 06/27/2003, 6:47 AM |
|
Oh yeah, I'm doing this in vb.net and the code generation uses asp:RadioButtonList
which generates HTML using <span id="xxx" disabled="disabled"><input id="zzz" type="radio" disabled="disabled"<label for="yyy">my text</label></span>
So it seems that I want to make the span stuff not be disabled but I'm not sure how to do this thru CCS
|
|
|
 |
|