jaime chacon

jaime chacon

  • NA
  • 1
  • 3k

HELP MY!!! radioButton on GridView select only one C#

Jan 21 2014 8:43 AM
Hello friends, I need to add radiobutton in a gridview, but only need to select one, the rows are added from a webservice, not hard data, the language is C #, need help please. thanks

-----------------------------------------------------------------------

hola amigos, necesito agregar radiobutton en un gridview, pero solo se debe seleccionar uno, las filas se agregan desde un webservice, no son datos en duro, el lenguaje es en C#, porfavor necesito ayuda. gracias
 
  
  1. <asp:GridView ID="gvPrecioNormal" runat="server" GridLines=">  
  2.   <Columns>  
  3.       <asp:TemplateField>  
  4.           <ItemTemplate>  
  5.             <asp:RadioButton ID="RadioButton1" runat="server" AutoPostBack="true" GroupName="RadioGroup"/> 
  6.           </ItemTemplate>  
  7.           <ItemStyle BorderWidth="1px" Width="5%" />  
  8.       </asp:TemplateField>  
  9.    </Columns>  
  10. </asp:GridView>  
(  GroupName="RadioGroup" ) does not function whit gridview.
 
 

Answers (1)