Documentation
Getting Started
jqxRating represents a jQuery UI widget that allows you to choose a rating. You can configure the jqxRating items size, image and the number of displayed itemsEvery 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 jqxRating widget requires the following files:
<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/jqxrating.js"></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>
The next step is to create a DIV element within the body of the html document.
<div id='jqxRating'></div>
The last step is to initialize the widget by adding the following script to the html document:
<script type="text/javascript"> $(document).ready(function () { $("#jqxRating").jqxRating({ width: 350, height: 35 }); });</script>
To call a function(method), you need to pass the method name and parameters(if any) in the jqxRating’s constructor.
To get the result of a function(method) call, you need to pass the method name in the jqxRating’s constructor and parameters(if any).$("#jqxrating").jqxRating(‘setValue’, 2);
To set a property(option), you need to pass the property name and value(s) in the jqxRating's constructor.var value = $("#jqxRating").jqxRating(‘getValue’);
To get a property(option), you need to pass the property name to the jqxRating's constructor.$("#jqxRating").jqxRating({ value: 2 });
To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to know when the rating is changed.. The example code below demonstrates how to bind to the ‘change’ event of jqxRating.var value = $("#jqxRating").jqxRating('value');
$("#jqxRating").in('change', function (event) {$("#rate").html(event.value);});
Basic Sample
<!DOCTYPE html><html lang="en"><head> <title>jQuery Rating 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/jqxrating.js"></script> <script type="text/javascript"> $(document).ready(function () { // Create jqxRating. $("#jqxRating").jqxRating({ width: 350, height: 35}); // bind to jqxRating 'change' event. $("#jqxRating").bind('change', function (event) { $("#rate").html('<span>' + event.value + '</span'); }); }); </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='jqxRating'> </div> <div style='margin-top: 10px;'> <div style='float: left;'> Rating:</div> <div style='float: left;' id='rate'> </div> </div></body></html>