The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxMaskedInput widget requires the following files:
$("#jqxmaskedinput").jqxMaskedInput('maskedValue', newValue);
To get the result of a function(method) call, you need to pass the method name in
the jqxMaskedInput’s constructor and parameters(if any).
var value = $("#jqxmaskedinput").jqxMaskedInput('maskedValue');
To set a property(option), you need to pass the property name and value(s) in the
jqxMaskedInput's constructor.
$("#jqxmaskedinput").jqxMaskedInput({ mask: '#####-####' });
To get a property(option), you need to pass the property name to the jqxMaskedInput's
constructor.
var mask = $("#jqxmaskedinput").jqxMaskedInput('mask');
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. The example code below demonstrates
how to bind to the ‘valuechanged’ event of jqxMaskedInput.
// bind to jqxMaskedInput valuechanged event.
$('#jqxmaskedinput').on('valueChanged', function (event) {
var value = event.args.value;
});