The only real difference I see from what I originally posted is the “position: ‘top'” setting, and this is the default value for position anyway.
What I did not mention before is that I had used a function to contain the initialization, and this seems to be the reason why it did not work for me before (it works when I do not use a function).
ie. – this did not work
function initializeTabs(selector) {
$(selector).jqxTabs({ width: 350, height: 200, position: ‘top’ });
}
initializeTabs(‘#tabs_rule_options’);
initializeTabs(‘#tabs_rule_triggers’);
initializeTabs(‘#tabs_rule_actions’);
Colin G