BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
<table>
<tr>
<td>
<input type="radio" name="radiobutn" id="rbyes" />
<label for="radiobtn">yes</label>
</td>
<td>
<input type="radio" name="radiobutn" id="rbno" />
<label for="radiobtn">no</label>
</td>
</tr>
</table>
Thanks
<ej:RadioButton Name="category" ID="Radio1" runat="server"
Checked="true" Text="1+ years" ></ej:RadioButton>
|
[body]
<ej:RadioButton Name="category" ID="Radio1" runat="server" CssClass="RadioNode" Checked="true" Text="1+ years" ></ej:RadioButton>
<ej:Button ID="btn" runat="server" Type="Button" Text="Status" ClientSideOnClick="onBtnClick"></ej:Button>
[script]
function onBtnClick() { // triggers while click the ejbutton
obj = $("#<%=Radio1.ClientID%>").ejRadioButton("instance");
// instance creation for radiobutton
console.log("the radioButton checked state is : " + obj.model.checked);
// obj.model.checked – prints the checked status of the radiobutton
} |