tabs

Javascript tabs widget with drag and drop reordering

Do you know of a tab widget that has built-in drag+drop reordering? I'm building an editor-like interface and want to allow the user to reorder their tabs. So far I've been using ExtJS with a community plugin, but it's buggy and usually needs updating with every new ExtJS release. ...

Jquery UI tabs preShow?

I am using jquery ui tabs. It has a couple of events like add, show, etc. I'd like an event that is triggered before the tab is added to the html, because I need to set width of the tab before it is added (for dynamic width purposes that I cant seem to do with CSS). Any idea how I can make a pre-show event that is triggered before the ...

How do I change the background of an Android tab widget?

My class extends extends TabActivity TabHost mTabHost = getTabHost(); TabHost.TabSpec tab1 =mTabHost.newTabSpec("tab1"); TabHost.TabSpec tab2 =mTabHost.newTabSpec("tab2"); tab1 .setIndicator("title tab1"); tab2 .setIndicator("title tab2"); mTabHost.addTab(tab1);mTabHost.addTab(tab2); TabHost.setCurrentTab(0 or 1) Can anybody guide...

Better alternative to an iframe?

Hi. I have a page with an iframe to feature the contents of the clicked tab. There are 3 tabs and 1 iframe. The sources of the contents relating to each tab clicked are formatted and coded in other html & css files. What is another alternative to using an iframe, because I noticed that when the tab is clicked, it still shows the white b...

remote jquery nested tabs

Hi I have nested tabs in jquery tabs which are pretty simple to do if we want static jquery tabs but what if we want nested tabs that the remote page should decide what would be the tabs. or in other words i want nested tabs in a remote page (or ajaxified) For example i m calling this page(remote page) through tabs <div id="containe...

How can I get the file I have open in vim to display in my iTerm tab

I can get the vim title to display on my window by doing this: let &titlestring = expand("%:t") . " @ " . hostname() if &term == "screen" set t_ts=^[k set t_fs=^[\ endif if &term == "screen" || &term == "xterm" set title endif But the tabs will say "Default". From the commandline I can do this: echo -ne "\e]1;hello world\a" A...

Rearrange tabs with the mouse in gvim

Is there any way in gvim to rearrange tabs by dragging and dropping them with the mouse? This is behavior I love in Firefox and Chrome. I know you can do :tabm n but that requires figuring out exactly how many tabs in you'd like to move to. Using the mouse would be more useful for this spatial task. Any methods to move tabs left/right ...

jQuery Tabs. Linking within tabs to tab

Update Hi guys! Got the linking working but now im facing another problem. When i've clicked the link within the tab and clicks on the "Menu"-tab again, the tabs look like shit. See working example link and code below. Rgds muttmagandi http://www.vallatravet.se/thetabs/ $(document).ready(function(){ $(".fadeOut").fadeTo(0, 0.5); ...

Expand Div with jQuery

I like to do something terribly simple Had a div that show only a little bit of image click on div, expand to the image height reclick on it, contract to to original height Now, my test is not concluant ! so many problems !, is there a simpler method around ? link on some funny result ! mostly as this ...

jqGrid and JQuery UI tabs showing grids expanded only on primary tab (div)

Hi, I have added some grids (jqgrid) to a jQuery UI Tabs object. All the grids on the Tabs child that is expanded by default, displays perfectly. But the grids on the Tab children that are NOT expanded by default, permanently shows the jqGrid small (jqgrid with autowidth=true). Any ideas? Thanks! See http://www.revolucion7.com/wp-cont...

Cookie jQuery tab menu

I have a tabbed thumbnail navigation on this page for example. When people pick a project from the submenu 'by industry -> financial' I want to make sure that the (double) submenu stays the same on the next project page, so people won't get lost in navigation. Right now it goes back to 'by name'. I've read about the jQuery cookie plugi...

Switch to last-active tab in VIM

In Vim, is there a way to quickly toggle between the current tab and the last active tab? Sort of the way '' toggles between the current line and the last active line. Plugins / keyboard mappings / voodoo all acceptable. ...

How to survive the transition from tabbed-based to buffer-based coding (Vim).

I recently changed from notepad++ to Vim. In notepad++ I used to be aware of my open files by seeing them as tabs, so when I wanted to close or change them I just pressed Shit-Tab or Ctrl-W. In Vim there are also tabs, but when I use them I feel like I'm just going back to my notepad++ way of managing my files. Is there a good way of lis...

Can you make valid Makefiles without tab characters?

target: dependencies command1 command2 On my system (Mac OS X), make seems to require that that Makefiles have a tab character preceding the the content of each command line, or it throws a syntax error. This is an annoyance when creating or editing Makefiles because I have my editor set up to be all-spaces-all-the-time. Can ...

Create a simple mootools 1.2 tab system

Hi all, I'm trying to create a very simple tab interface using the mootools 1.2 version. I need to have a fadein-fadeout effect, no sliding or morphing. I've tried to find some demos online but they all refer to different versions of mootools or they are too complicated comparing to my needs. Can you please give me some guidelines? This...

flex datagrid custom tab behavior

Hello, I have two datagrids and I want to override the behavior of the tab-key event, so that it goes to the next datagrid, when the cursor reaches the end of the first datagrid columns. Any hints are appreciated! Markus ...

is there a way to slide more tabs into view using jquery UI tabs?

i am using jquery UI tabs. works great. i have right now 5 tabs using a fixed width. i will be adding more tabs but i don't want to grow the width any more. so what i want to provide is way to click on a "more" type link and display the next "page" of tabs. it would be cool if i could have the next set of tabs "slide" into view. n...

jQuery Tabs; cookie trouble..

I'm having trouble finding out how to set jQuery cookie for my tabs on this page: http://onomadesign.com/wordpress/identity-design/alteon-a-boeing-company/ My jQuery Tabs code is like this: $(document).ready(function(){ $(function () { var tabContainers = $('div.sc_menu_wrapper > div'); $('a.tab').click(function () { ...

Tab structure best practices

Hi, When developing a WinForms app that will utilize a tab control to display different sets of data, is it best to add all my controls to the tabs directly, OR create user controls, add my controls to the UC and add the UC to each of the different tabs? I was informed that the UC approach is best practice, and I understand some of the...

Tabbed Navigation Using a List

What is the best way to adjust the li elements to fill the entire width of the div the tab bar will be located in? ...