tabs

Overlapping tabs with JTabbedPane

Hi, Using JTabbedPane we want to implement a design that requires tabs to be overlapping (illustrated in image that can be found here: http://imm.io/YAZ). Not exactly rocket science, but I can't seem to find a solution (not even after extensive googling). Is this possible using JTabbedPane (via PLAF maybe) or do we need to write a c...

Java tabs in GUI

Hello, I am hoping someone can spoon feed me this solution. It is part of my major lab for the class, and it really isn't giving me too much since I just don understand how to make a GUI with tabs. I can make a regular program with some sort of GUI, but I've been searching and reading and can't put 2 and 2 because of the whole class part...

Ruby on rails and tabs

I'm still a beginner with ruby and rails, and now I'm googling about methods for creating a tabbed menu, marking the list element of the currently active controller with a css class "current". There are many hits on google, but I haven't found any that I manage to get working. I have my menu here: <ul> <li class="current"><%= link_t...

[Eclipse] - Inserting Spaces Instead of Tabs in ALL Files

Our unit testing setup makes sure you use spaces instead of tabs in all files, including .jsp and jspx. I have set this option for the general editor but the jsp editor does not recognize/see this option and still continues to use tabs instead of spaces. Is there a way to force the jsp editor to insert spaces instead of tabs? :) ...

Android HelloTab Tutorial

Hello, I am an experienced Java programmer just starting out with Android development. I am going through the tutorials and am having a problem with the tab widget tutorial. I have followed the example to the letter and keep getting the below in the log when trying to run on the emulator: ActivityManager: Starting: Intent { act=andro...

WPF TabControl - Add New Tab Button (+)

What is the proper way of adding a '+' button tab at the end of all the tab items in the tab strip of a tab control. It should work correctly with multiple tab header rows. It should be at the end of all tab items Tab cycling should work correctly (Alt+Tab) ie the + tab should be skipped. I shouldn't have to modify the source collec...

Android ExpandableListView within Tab OnGroupExpandedListener behaviour changes on switching tabs

I have an Activity with a few Tabs created dynamically within a loop, where each tab contains an ExpandableListView. I then register the OnGroupExpandedListener to each ExpandableListView within each tab, to have a behaviour that only one group can be expanded at any one given time. The problem arises when i switch to another tab, the pr...

My First app. from Tab Layout does not start

I tried my first Android app following the "Tab Layout" sample from developer.android.com. I followed it perfectly (I think), but I changed some names only. It will not start. Just says "...stopped unexpectantly". Tried debugging with DDMS, but dont get anything from the log. Please help. Here is my error log: 08-12 15:06:16.932: DEBUG/...

jQuery Tools - Slideshow & Tabs linking problem

I am using jQuery Tools Slideshow & Tabs for a project I am working on. Right now everything works great and as it should. Currently each tab (li) is what changes the images in the #slide div. The problem I am having is that I have an external link inside each li (Read More Button) which links to another page in the site. Because the lin...

How does WPF build up the list of controls that can be tab-navigated?

I am curious to know how WPF figures out where the focus should be set when the user hits the TAB key. Thinking aloud, I feel: It may be doing relative search on the UI and find the nearest control based on (x,y) location. It could manually walk the logical sub-tree to look for the nearest control Does it do it each time the TAB key ...

MacVim Open File In Existing Window

Is there a way to set up MacVim to open a new file in the current window in a running MacVim instance? I currently have the MacVim preference "Open new files in a new tab in the current window" set, but ideally I'd just like to open new files the way ":e new_file" works, without the tabs. My main motivation is that I currently use NERDT...

jQuery show hide content/div using links/controllers

Hi I'm trying to use jquery to create a tab effect for several div contents. at the moment, theres a list of items that when you click on, it triggers the div with the matching ID as the hyperlink. But I want to be able to have an additional feature where within the content DIV, theres a link that you click on and it will show the next ...

iPad tab bar app not autorotating

I made a tab bar application, but it will not rotate into landscape. I have the 'shouldAutoRotate' set to "return YES" but that doesn't work... Any suggestions? ...

How do I get a tabbed pane component in JSF 2.0 (Sun Mojarra)

Hi, I am learning/using JSF 2.0 (Sun Mojarra) now and I want to have a tabbed pane in my webapp (single tabs could named be General, Detail1,Detail2,...). How do I achieve this? I haven't found any documetation for this so far :( ...

Using jQuery UI Tabs. How would I make one of the tabs link to a URL rather than load a tab panel?

I am using jQuery UI tabs to create a vertical tab section of a page, and want the last vertical tab to link out to a URL rather than load a tab panel. Any suggestions for the best way to do this? I can stick another element besides an LI into the list, but would rather have the last li just behave differently. Thanks for any help. ...

Facebook Get User ID From Application Tab

Hello! Facebook apps are allowed to have a tab that a user can add to his profile's tabs if he wants. How can I get the uid or otherwise identify the currently logged in user in order to customize the layout for him please? Thank you. ...

Need event for user clicking on a tab in Android

I need to capture events when the user clicks on a tab in a TabHost. Something similar to OnTabChangeListener, but OnTabChangeListener only fires when the tab changes, not when it stays the same. Suggestions? ...

WPF: Keyboard Navigation with imbedded listboxes

I have struggled for over a day trying to get keyboard navigation to work correctly in a WPF app with embedded list boxes. Here a description of the layout: - listbox 1 (repeats unlimited times) - texboxes 1-4 - listbox 2 (repeats up to 4 times) - textbox 5 - listbox 2 - button 1 - listbox 1 - buttons 2-9 ...

Can URL routing help with issues from multiple tabs and session storage?

I have an application that stores database IDs in session while editing several pages of data. When the user opens multiple tabs (or windows), data is being overwritten because the IDs are getting crossed up. I completely understand the problem, and was going to fix this by taking the IDs out of storage and passing them around in query s...

Creating Jquery submenu tabs from onclick on vertical menu

I have a left vertical menu and onclick I have to show the submenu in Jquery tabs on main content area on right side . How can I achieve it? ...