Getting Started

jqxKnob represents a jQuery plugin with round shape which displays a draggable indicator within a range of values. Knob can be used in a table or matrix to show the relative value of a field in a range of values in the data region, for example, as a KPI. It supports HTML5, SVG and VML rendering.
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 jqxKnob 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 jqxKnob’s constructor.
$("#jqxKnob").jqxKnob('refresh');
To get the result of a function after calling it, you can use the following syntax:
var value = $("#jqxKnob").jqxKnob('val');
To set a property(option), you need to pass the property name and value(s) in the jqxKnob's constructor.
$("#jqxKnob").jqxKnob({ allowValueChangeOnClick: false });
To get a property(option), you need to pass the property name to the jqxKnob's constructor.
var allowValueChangeOnClick = $("#jqxKnob").jqxKnob('allowValueChangeOnClick');
To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to get the selected date after the user clicks on a cell. The example code below demonstrates how to bind to the ‘valuechanged’ event of jqxKnob.
$('#jqxKnob').on('change', function (event) {
 
});

Basic Sample

The result of the above code is:

[フレーム]

AltStyle によって変換されたページ (->オリジナル) /