Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
322 views

Detect tabbox tab change in XUL

What's the best way to detect switching between tabs inside a tabbox? In particular, I need to detect when a certain tab is opened, and when the user leaves it (switches to another tab). I'm using ...
2
votes
1answer
109 views

Is there a declarative way to create tabbed layouts on Android?

The Tab Layout tutorial on the Android Developers site shows how to add tabs to a TabHost with a lot of repetitive procedural code. Is there a declarative way to create tabbed layouts on Android? ...
0
votes
0answers
24 views

Linking ViewControllers to the AppDelegate

I'm using Xcode 4.2 and have set up a Tabbed Application, I didn't use the storyboard option, so I have separate xib files. The thing I don't have is a MainWindow.xib the tabs are all created by ...
0
votes
0answers
142 views

Unable to open a ViewMenu from View nested inside TabbedViewNavigator

I have created a Flex mobile application of type ViewNavigatorApplication which loads a view. On this view I have added a button that opens the viewMenu on the topLevelApplcation using the code: ...
0
votes
1answer
115 views

How to interrupt an AJAX request in rails?

I've the following situation: A tabbed view sends AJAX requests upon clicking on tabs to change view, each request takes around 3-4 seconds from the time the user clicks on the tab until the view is ...
0
votes
2answers
185 views

CSS+HTML+Javascript: How to make multilevel tabbed panes in html?

I want to make multilevel tabbed panes for my PHP frontend.I want to achieve something like this: _|TAB1||Tab2||Tab3|________________ ____|SUB TAB1||Sub Tab2|__________ |Content of Sub Tab 1 ...
0
votes
1answer
159 views

Android tab text invisible

I've developed a simple application with TabView. There are two tabs, each tab has a short text and an icon. I've made the icons in the way the tutorials say. The application looks perfect on the ...
0
votes
1answer
319 views

showDialog problem inside tabbed activity

I have a tabhost with 2 tabs inside my main activity, for the 2nd tab i added a list view intent as content. Everything is working fine. Now I have overriden onCreateDialog() method in the list view ...
0
votes
0answers
35 views

tabbed view in android widget is it possible

I want to create a widget that has three tabs.. all tabs have few textviews buttons etc.. The tabbed view by itself is not supported in widget.. it seems to be supported only in applications.. So is ...
0
votes
0answers
193 views

Geo Mashup Tabbed box, each tab new map

I am using Geo-Mashup on a wordpress project. I have this code: <div id="mapsliderout"> <a class="handle1" href="http://link-for-non-js-users.html"></a> <div ...
0
votes
1answer
811 views

How to display an Android gridview within a tabbed layout

Hi I'm setting up an android app and I'm using a tabbed interface. I'd like three tabs, a text based tab (About), a webkit tab (Store) and a gridview tab of images (Gallery) like in the Gridview ...
0
votes
2answers
298 views

Add a background image to tables in a navigation view in a tabbed application

I have a tabbed application which then has a navigation controller. In each the navigation controller I an a table View Controller which obviously contains a table. I push a new table view controller ...
0
votes
1answer
760 views

How to embed a SWT TableViewer in a TabFolder?

I am trying to embed a JFace TableViewer in a SWT TabFolder, but when I do so, the table does not show up. The current (working code) in my GitToDo code looks like (see this Git repos): final ...
0
votes
8answers
1k views

how to make tabbed view in html?

When click on tab A,show content for tab A, click on tab B,show content for tab B,and so on. What's the most simple and compatible way of constructing this html snippet? Sorry to update late,but I ...