Open In App

jQWidgets jqxRadioButtonGroup theme Property

Last Updated : 30 Jan, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxRadioButtonGroup widget is used to display a group of radio buttons that possesses API in order to modify them.

The theme property is used to set or return the theme for the jqxRadioButtonGroup widget. It accepts string type value, and its default value is empty (”). In order to use this property, we need to incorporate the theme stylesheet i.e. (jqx.energyblue.css) into the header section. The theme file is included after jqx.base.css file.

Syntax:

  • Setting the theme property.
$("#jqxRadioButtonGroup").jqxRadioButtonGroup({ theme: 'energyblue' });
  • Returning the theme property.
var th = $('#jqxRadioButtonGroup').jqxRadioButtonGroup('theme');

 

Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder.

<link rel=”stylesheet” href=”jqwidgets/styles/jcustomize qx.base.css” type=”text/css” />
<link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.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” src=”jqwidgets/jqxradiobuttongroup.js”></script>

Example 1: The below example illustrates the jQWidgets jqxRadioButtonGroup theme property.

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <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/jqx-all.js"></script>
    <script type="text/javascript"
        src="jqwidgets/jqxradiobutton.js"></script>
  <script type="text/javascript"
        src="jqwidgets/jqxradiobuttongroup.js"></script>
</head>
  
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
  
    <h3>
        jQWidgets jqxRadioButtonGroup theme Property
    </h3>
  
    <div id='jqxRadioButtonGroup'>
        GeeksforGeeks
    </div>
  
    <input type="button" 
           id="btn" 
           value="Click Here" 
           style="padding: 5px 14px; margin-top: 15px;">
    <br>
    <div id="log"></div>
    <script type="text/javascript">
        $(document).ready(function () {
            $("#jqxRadioButtonGroup").jqxRadioButton({
                theme: 'energyblue'
            });
  
            $('#btn').on('click', function () {
                var th = $('#jqxRadioButtonGroup')
                    .jqxRadioButton('theme');
                $('#log').text(th);
            });
        });
    </script>
</body>
  
</html>


Output:

 

Example 2: The following is another example of the jqxRadioButtonGroup theme property in jQWidgets.

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <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/jqx-all.js"></script>
    <script type="text/javascript"
        src="jqwidgets/jqxradiobutton.js"></script>
  <script type="text/javascript"
        src="jqwidgets/jqxradiobuttongroup.js"></script>
</head>
  
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
  
    <h3>
        jQWidgets jqxRadioButtonGroup theme Property
    </h3>
  
    <div id='jqxRadioButtonGroup'>
        GeeksforGeeks
    </div>
  
    <input type="button" 
           id="btn" 
           value="Click Here" 
           style="padding: 5px 14px; margin-top: 15px;">
    <br>
    <div id="log"></div>
    <script type="text/javascript">
        $(document).ready(function () {
            $("#jqxRadioButtonGroup").jqxRadioButton({
                theme: 'material'
            });
  
            $('#btn').jqxButton().
                    click(function () {
                        var th = $('#jqxRadioButtonGroup')
                            .jqxRadioButton('theme');
                        if (th === null) {
                            $('#log').text("Null!");
                        }
                        else {
                            $('#log').text("Not null!");
                        }
                    });
            });
    </script>
</body>
  
</html>


Output:

 

Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxradiobuttongroup/jqxradiobuttongroup-api.htm?search=



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads