The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxFileUpload widget requires the following files:
$('#jqxFileUpload').jqxFileUpload('uploadAll');To set a property (option), you need to pass the property name and value(s) in the jqxFileUpload's constructor:
$('#jqxFileUpload').jqxFileUpload({ height: 200 });To get a property (option), you need to pass the property name to the jqxFileUpload's constructor:
var height = $('#jqxFileUpload').jqxFileUpload('height');To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to know when a file has been selected for upload:
// bind to 'select' event. $('#jqxFileUpload').on('select', function (event) { });