Open In App

jQWidgets jqxRangeSelector labelsFormat Property

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, optimized, platform-independent, and widely supported framework. The jqxRangeSelector widget is used to represent a jQuery range slider that can easily be used to select a numeric or date range value. This widget is used to set the range in numbers, days, weeks, months, years, etc.

The labelsFormat property is used to set or return the format of the labels. It accepts String type value and its default value is null.

Its possible number formats are –

  • ‘d’ – It represents decimal numbers.
  • ‘f’- It represents floating-point numbers.
  • ‘n’ – It represents integer numbers.
  • ‘c’ – It represents currency numbers.
  • ‘p’ – It represents percentage numbers.

Its possible date formats are –

  • ‘d’ – It represents the day of the month.
  • ‘dd’ – It represents the day of the month.
  • ‘ddd’ – It is abbreviated for the day of the week.
  • ‘dddd’ – It is the full name of the day of the week.
  • ‘h’ – It represents the hour using a 12-hour clock from 1 to 12.
  • ‘hh’ – It represents the hour using a 12-hour clock from 01 to 12.
  • ‘H’ – It represents the hour using a 24-hour clock from 0 to 23.
  • ‘HH’ – It represents the hour using a 24-hour clock from 00 to 23.
  • ‘m’ – It represents the minute, from 0 through 59.
  • ‘mm’ – It represents the minutes, from 00 through 59.
  • ‘M’ – It represents the month, from 1 through 12.
  • ‘MM’ – It represents the month, from 01 through 12.
  • ‘MMM’ – It represents the abbreviated name of the month.
  • ‘MMMM’ – It represents the full name of the month.
  • ‘s’ – It represents the seconds, from 0 through 59.
  • ‘ss’ – It represents the second, from 00 through 59.
  • ‘t’ – It represents the first character of the AM/PM designator.
  • ‘tt’ – It represents the AM/PM designator.
  • ‘y’ – It represents the year, from 0 to 99.
  • ‘yy’ – It represents the year, from 00 to 99.
  • ‘yyy’ – It represents the year, with a minimum of three digits.
  • ‘yyyy’ – It represents the year as a four-digit number.

 

Syntax:

Set the labelsFormat property.

$('selector').jqxRangeSelector({ labelsFormat: String });

Return the labelsFormat property.

var labelsFormat = 
    $('selector').jqxRangeSelector('labelsFormat');

Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder.

<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/jqxdata.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxrangeselector.js”></script>

The below example illustrates the jQWidgets jqxRangeSelector labelsFormat property.

Example:

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/jqxdata.js"></script>
    <script type="text/javascript" 
        src="jqwidgets/jqxrangeselector.js"></script>
  
    <style>
        h1,
        h3 {
            text-align: center;
        }
          
        #jqxRS {
            width: 100%;
            margin: 0 auto;
        }
    </style>
</head>
  
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
  
    <h3>
        jQWidgets jqxRangeSelector labelsFormat Property
    </h3>
  
    <div id="jqxRS"></div>
  
    <script type="text/javascript">
        $(document).ready(function() {
            $("#jqxRS").jqxRangeSelector({
                width: 400,
                height: 20,
                min: 0,
                max: 100,
                range: {
                    from: 10,
                    to: 80
                },
                labelsFormat: 'p'
            });
        });
    </script>
</body>
  
</html>


Output:

Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxrangeselector/jquery-rangeselector-api.htm



Last Updated : 31 Oct, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads