Getting Started

jqxInput represents an Input widget with auto-complete capabilities.

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 jqxInput widget requires the following files:


The next step is to create an Input 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 jqxInput’s constructor.
$("#input").jqxInput('suggest');
    
To get the input's value, you need to do the following:
var value = $("#input").val();
    
To set a property(option), you need to pass the property name and value(s) in the jqxInput's constructor.
$("#input").jqxInput({ minLength: 3 });
    
To get a property(option), you need to pass the property name to the jqxInput's constructor.
var minLength = $("#input").jqxInput('minLength');
    
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.
$('#input').on('change', function (event) {
        
});
    

Basic Sample

The result of the above code is: