The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxRadioButton widget requires the following files:
To set a property(option), you need to pass the property name and value(s) in the jqxRadioButton's constructor.$("#jqxRadioButton").jqxRadioButton(‘check’);
To get a property(option), you need to pass the property name to the jqxRadioButton's constructor.$("#jqxRadioButton").jqxRadioButton({ checked: true });
To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to get the check state after the user clicks the button. The example code below demonstrates how to bind to the ‘change’ event of jqxRadioButton.var checked = $("#jqxRadioButton").jqxRadioButton('checked');
$("#jqxRadioButton").on('change', function (event) {var checked = event.args.checked;alert('checked: ' + checked);});
<!DOCTYPE html><html lang="en"><head> <title id='Description'>jQuery Radio Button Sample</title> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="../../scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxradiobutton.js"></script> <script type="text/javascript"> $(document).ready(function () { // create jqxRadioButton. $("#jqxradiobutton1").jqxRadioButton({ width: 120, height: 25 }); $("#jqxradiobutton2").jqxRadioButton({ width: 120, height: 25 }); // bind to change event. $("#jqxradiobutton1").bind('change', function (event) { var checked = event.args.checked; alert('jqxradiobutton1 checked: ' + checked); }); $("#jqxradiobutton2").bind('change', function (event) { var checked = event.args.checked; alert('jqxradiobutton2 checked: ' + checked); }); }); </script><script async src="https://www.googletagmanager.com/gtag/js?id=G-2FX5PV9DNT"></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-2FX5PV9DNT');</script></head><body class='default'> <div id='jqxradiobutton1'> Radio Button 1</div> <div id='jqxradiobutton2'> Radio Button 2</div></body></html>