The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxNavigationBar widget requires the following files:
$("#jqxNavigationBar").jqxNavigationBar(‘expandAt’, 1);To get the result of a function(method) call, you need to pass the method name in the jqxNavigationBar’s constructor and parameters(if any).
var content = $("#jqxNavigationBar").jqxNavigationBar(‘getContentAt’, 0 );To set a property(option), you need to pass the property name and value(s) in the jqxNavigationBar's constructor.
$("#jqxNavigationBar").jqxNavigationBar({ disabled: true });To get a property(option), you need to pass the property name to the jqxNavigationBar's constructor.
var disabled = $("#jqxNavigationBar").jqxNavigationBar('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 ‘expandedItem’ event of jqxNavigationBar.
$("#jqxnavigationbar").on('expandedItem', function (event) { var index = event.item + 1; alert("Expanded: Header " + index); });