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