jqxRadioButton requires the following files:
jqx.base.css
jqxcore.js
jqxradiobutton.js
<script src="~/jqwidgets/jqxradiobutton.js"></script> <jqx-radio-button theme="arctic">3 Months Contract</jqx-radio-button> <jqx-radio-button theme="arctic">6 Months Contract</jqx-radio-button>To call a function(method), you need to pass the method name and parameters(if any) in the UI component’s instance.
<script src="~/jqwidgets/jqxradiobutton.js"></script> <jqx-radio-button instance="getInstance()">3 Months Contract</jqx-radio-button> <jqx-radio-button {{configuration}}>6 Months Contract</jqx-radio-button> @section scripts { <script type="text/javascript"> function getInstance(instance) { instance["check"](); } </script> }To bind to an event of a UI Component, you can use
on-event-type
syntax. The example
code below demonstrates how to bind to an event.
<script src="~/jqwidgets/jqxradiobutton.js"></script> <jqx-radio-button on-checked="eventHandler()">3 Months Contract</jqx-radio-button> <jqx-radio-button >6 Months Contract</jqx-radio-button> @section scripts { <script type="text/javascript"> function eventHandler(event) { } </script> }