How can I help you?
Show ButtonGroup selected state on initial render
19 Dec 20221 minute to read
To show selected state on initial render, checked property should be added to the corresponding input element.
<div class='e-btn-group'>
<input type="checkbox" id="checkbold" name="font" value="bold" checked/>
<label class="e-btn" for="checkbold">Bold</label>
<input type="checkbox" id="checkitalic" name="font" value="italic" />
<label class="e-btn" for="checkitalic">Italic</label>
<input type="checkbox" id="checkline" name="font" value="underline"/>
<label class="e-btn" for="checkline">Underline</label>
</div>public ActionResult Index()
{
return View();
}NOTE