I have just started looking at jqWidgets and found this minor issue. (Not a bug, just a usability issue)
I have a page with 5 tabs, the 1st one being the main tab. Depending on the operation being performed, tabs 1-4 are disabled or enabled. Tab 0 is always enabled.
At the moment i do this:
$(‘.listOfTabs’).jqxTabs(‘enableAt’, 1);
$(‘.listOfTabs’).jqxTabs(‘enableAt’, 2);
$(‘.listOfTabs’).jqxTabs(‘enableAt’, 3);
$(‘.listOfTabs’).jqxTabs(‘enableAt’, 4);
It would be great if I could simply $(‘.listOfTabs’).jqxTabs(‘enableAt’, [1, 2, 3, 4]);
This principle could also be applied to other methods.
Better still, a cool way to do it could be
$(‘.listOfTabs’).jqxTabs(‘enableDisable’, [true, false, false, true]);
meaning enable tabs 0 and 3, disable tabs 1 and 2