onedizzydevil
Programmer
I have a Radio button in tha datagrid, if the Radio button is NOT runat="server" the button will not allow me to selection any of them. If I include runat="server" the system changes all the ids and values which allows for someone to select them all when I. Has any dealt with this yet? Any solutions or idea?
All I am doing is creating custom column and one of the columns is this:
<asp:TemplateColumn>
<ItemTemplate>
<input type="radio" id="user" value='<%# databinder.eval(container.dataitem,"userid"
%>'>
</ItemTemplate>
</asp:TemplateColumn>
Thanks for the help
Wayne Sellars
"Programming, today is a race between software developers, striving to build bigger and better idiot-proof programs, and the Universe, trying to produce bigger and better idiots. So far, Universe 1 - Programmers 0."
All I am doing is creating custom column and one of the columns is this:
<asp:TemplateColumn>
<ItemTemplate>
<input type="radio" id="user" value='<%# databinder.eval(container.dataitem,"userid"
</ItemTemplate>
</asp:TemplateColumn>
Thanks for the help
Wayne Sellars
"Programming, today is a race between software developers, striving to build bigger and better idiot-proof programs, and the Universe, trying to produce bigger and better idiots. So far, Universe 1 - Programmers 0."