Getting Started
jqxRadioButtonGroup represents a widget which displays a group of radio button and has API to customize them.
Every UI widget from jQWidgets toolkit needs its JavaScript files to be included
in order to work properly.
The first step is to create html page and add links to the JavaScript files and
CSS dependencies to your project. The jqxRadioButtonGroup widget requires the following files:
The next step is to create html element within the body of the html document.
The last step is to initialize the widget by adding the following script to the
html document:
To call a function (method), you need to pass the method name and parameters (if
any) in the jqxRadioButtonGroup's constructor.
To set a property (option), you need to pass the property name and value(s) in the
jqxRadioButtonGroup's constructor.
To get a property (option), you need to pass the property name to the jqxRadioButtonGroup's
constructor.
To bind to an event of a UI widget, you can use basic Javascript syntax. Let’s suppose
that you want to get the selected value after the user change the current one. The
example code below demonstrates how to bind to the ‘resize’ event of jqxRadioButtonGroup.
Basic jqxRadioButtonGroup Sample