How can I get the value of the selected radio button without using ViewChild?
There is no documentation in syncfusion about this.
Here's my HTML code
<ul>
<li>
<ejs-radiobutton #rbClinician label="Clinician Block" name="block" checked="true">
</ejs-radiobutton>
</li>
<li>
<ejs-radiobutton #rbPatient label="Future Patient" name="block"></ejs-radiobutton>
</li>
<li>
<ejs-radiobutton #rbInfo label="Patient Information" name="block"></ejs-radiobutton>
</li>
</ul>