jquery-ui-tabs

jquery ui tabs body background

Hi I can use jquery ui tabs and bend the css used for the tabs. I m using this to display a background color for the body of the tabs .ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; color:white; background-color: #111010; backgorund-image: url(backgrounds/g4wd10.gif) 0 0; opacity:1; font-size: 12px; } ...

Stopping rotate when a tab is clicked when using jQuery UI Tabs

I am using the following : $("#roottexts").tabs().tabs("rotate",5000, true); to let the tabs display their contents in turn. However , I would like the rotation to stop as soon as the user clicks one tab (or hovers over a tab). Does anyone has code to do this ? Thx in advance, ...

jquery ui tabs and form validation plugin

Hi; I'm using jquery Ui tabs and validation plugins, for my forms, the forms divided in 4 steps(like wizard) and navigate trough the tabs by navigation(not tabs), each steps contain form element and need to be validate,; her is my code: <script> $('#registration').validate({ errorClass: "warning", ...

jQuery UI Tabs -- Can the 'cache' option be applied on a per-tab basis?

I'm working on a tabbed UI using jQuery UI AJAX tabs. Some tabs (tabs which are read-only) need to refresh automatically whenever the user leaves and returns to them, while others (tabs which contain forms) should only load once and not refresh when returned to. Is it possible to specify that a single tab should cache it's AJAX conte...

Google Maps API v3 and jQuery-UI Tabs

I am using the new v3 of the Google Maps API. Basically the issue I have is that I have a Google Map within jQuery UI Tabs. The map is not in the first tab, so you have to click the tab to view the map, but it does not always render correctly. I.e. sometimes the map images are not correctly placed. I had this problem when I was using v2...

How do I use JQuery UI tabs with Django (or other tab-solution)?

Hi, I would like to use the JQuery UI tabs in my Django app but how should I do that? I cannot figure it out with Django's template system. Or, is it another smoother way to get tabs in a Django app? Thanks /Tobbe ...

jQuery ajaxOptions -error works, why doesn't Success?

Hello, I'm using jQuery UI Tabs, and am using the sample code: $(function() { $("#tabs").tabs({ ajaxOptions: { error: function(xhr, status, index, anchor) { $(anchor.hash).html("Couldn't load this tab. We'll try to fix this as soon as possible. If this wouldn't be a demo."); } ...

jQuery UI Tabs: Several sets of tabs...

I'm using the jQuery UI Tabs for individual real estate listings... the listing are generated on the fly from the DB. I'm curious if there's a better way of associating tabs and their respective DIV fragments (containers) than individual IDs per tab group: #tabContent1_1 #tabContent2_1 #tabContent3_1 ... #tabContent1_2 #tabContent2_2 ...

How to make jQuery UI tabs appear at the bottom of a page

Hi All: Is there some way to make the jQuery UI tab widget tabs appear at the bottom of a page? Using the example from the jQuery site: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>jQuery UI Tabs - Default functionality</title> <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="...

track tab history plus links on tabs for back button functionality?

Hi all, I've got a page with fg.menu and jquery UI tabs that works fairly well. I've got custom handlers to load menu links into the selected tab. The tabs are all ajax-loaded and the contents also have their own links, which I've handled as such in my tab options: var tabOpts = { select:handleSelect, event: 'change', load: func...

jQuery UI tabs, access required to loaded data over ajax on tabsload event

jQuery UI tabs, access required to loaded data over ajax on tabsload event I am using jQuery UI tabs to load content over AJAX. JSON structure of content { content: 'content-data', stats: 100 } The tabs are being loaded by defining $('#tabs-ui').tabs({ ajaxOptions: function(result){ var data = Drupal.parseJson(...

weird jQuery dataTables rendering issue

Hi all, I'm working on a web app that uses menus (fg.menu) and jQuery UI tabs. These work great. I'm now trying to apply the dataTables plugin to the tables that I'm loading (via Ajax) in my tabs. The tables are generated on the server side (JSON is not an option right now) and sit in static files that I load into the tabs. The tables h...