G
Guest
have an asp.net option group list.
I need to be able to style it or at least override the render event so i can
put in my own styles. Short of developing an inherited control of the option
group im not sure what else i can do.
I suppose the best way of explaining what i want to try and do is like this:
The option group list is rendered (when in flow layout) is rendered like this:
<span id="rbStatus">
<label for="rbStatus_0">Employed</label>
<input id="rbStatus_0" type="radio" name="rbStatus" value="1"
tabindex="1000" />
<br>
<label>
and so on and so forth. I need to change it so that it renders as:
<div id="rbStatus">
<div for="rbStatus_0">Employed</label>
<input id="rbStatus_0" type="radio" name="rbStatus" value="1"
tabindex="1000" />
<br>
<label>
or something to that effect. Does anyone have any idea how i can go about
this?
I need to be able to style it or at least override the render event so i can
put in my own styles. Short of developing an inherited control of the option
group im not sure what else i can do.
I suppose the best way of explaining what i want to try and do is like this:
The option group list is rendered (when in flow layout) is rendered like this:
<span id="rbStatus">
<label for="rbStatus_0">Employed</label>
<input id="rbStatus_0" type="radio" name="rbStatus" value="1"
tabindex="1000" />
<br>
<label>
and so on and so forth. I need to change it so that it renders as:
<div id="rbStatus">
<div for="rbStatus_0">Employed</label>
<input id="rbStatus_0" type="radio" name="rbStatus" value="1"
tabindex="1000" />
<br>
<label>
or something to that effect. Does anyone have any idea how i can go about
this?