The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxComplexInput widget requires the following files:
$("#jqxComplexInput").jqxComplexInput("refresh");To get the complex input's value, you need to do the following:
var value = $("#jqxComplexInput").val();To set a property (option), you need to pass the property name and value(s) in the jqxComplexInput's constructor:
$("#jqxComplexInput").jqxComplexInput({ width: 150 });To get a property (option), you need to pass the property name to the jqxComplexInput's constructor:
var width = $("#jqxComplexInput").jqxComplexInput("width");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 input value is changed:
// bind to 'change' event. $('#jqxComplexInput').on('change', function (event) { });