The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxExpander widget requires the following files:
$("#jqxExpander").jqxExpander(‘expand’);To get the result of a function(method) call, you need to pass the method name in the jqxExpander’s constructor and parameters(if any).
var content = $("#jqxExpander").jqxExpander(‘getContent’);To set a property(option), you need to pass the property name and value(s) in the jqxExpander's constructor.
$("#jqxExpander").jqxExpander({ disabled: true });To get a property(option), you need to pass the property name to the jqxExpander's constructor.
var disabled = $("#jqxExpander").jqxExpander('disabled');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 item when the user clicks. The example code below demonstrates how to bind to the ‘collapsed’ event of jqxExpander.
// bind to collapsed event. $("#jqxexpander").on('collapsed', function (event) { alert("Collapsed"); });