A GUI pattern, a panel that contains one or more tabs within his borders. Tab panel allows user to display multiple pages within one window(panel), easily switching between pages with a single click. Tab panel is a "parent" of a tab.
Questions tagged [tabpanel]
443 questions
3
votes
2 answers
Replace TabPane with separate scenes (JAVAFX)
Currently i have TabPane with 3 active tabs. I have to manually switch between them, which isn't ideal. What i would like to do is replace the TabPane all together and have one scene inside the stage, which would then switch to next scene (From…

Elion
- 33
- 5
3
votes
1 answer
Add Tab to a TabPane JavaFX
I am trying to add a new tab with fxml.
I already add tabs to the tabPane.
int numTabs = tabPane.getTabs().size();
Tab tab = new Tab("Tab " + (numTabs + 1));
tabPane.getTabs().add(tab);
But I can't load the FXML to it with…

Djonathan Krause
- 124
- 3
- 14
3
votes
1 answer
JavaFX, pass parameters between tabs controller
I looked for a solution anywhere before asking this question, if it already exists please report it.
In practice I have this situation:
TabLayout.fxml

V_Martusciello
- 47
- 1
- 10
3
votes
0 answers
JavaFX - Fit Tab(Width) on TabPane Header
I would like to fit my Two Tabs on TabPane using
TabPane.setTabMinWidth() method.
I thought a simple division will solve the problem.
tabPane.setTabMinWidth(tabPane.getPrefWidth()/2);
// in this approach TabPane add Menu Button on the right.
…

Orville
- 518
- 7
- 17
3
votes
3 answers
JavaFX. Can't remove extra-space at the right of TabPane
I'm developing full-screen application on JavaFX 2.2 with tab navigation. Tab's should fill all screen width. But I found that I have 10px space at the right side of headers region.. And what's interesting: this space appear only after I switch to…

Vadym Tretyak
- 43
- 1
- 5
3
votes
1 answer
Gwt, the Dilemma of TabPanel, TabLayoutPanel & Custom Tab using TabBar +DeckLayoutPanel
My app has a need to store many Panel dynamically. So TabPanel is the suitable choice. However, TabPanel only works in Quirks Mode, it can also work in Standards Mode but with some Quirks, ex, when u click a link put inside a TabPanel then there is…

Tum
- 3,614
- 5
- 38
- 63
3
votes
2 answers
How to place combobox in the tab's title?
Is it possible to show combobox (better if it will be extjs combo) in the tab's title?
I have created an example on jsfiddle but there are such issues:
1. It is not possible to show combo's options list (mouse click don't work)
2. Tab's height is…

Andron
- 6,413
- 4
- 43
- 56
3
votes
2 answers
BadgeCls on a tab panel in Sencha Touch
First ever question on here!
For some reason I can't get the badgeCls option to work in Sencha Touch. I'm trying to change the colour of the badge, but the class I pass isn't showing up on the actual badge when it renders.
I've done a quick example…

Goat Karma
- 409
- 1
- 3
- 10
3
votes
1 answer
Bookmarking of tabs using Ext JS?
Need some help with bookmarking of tabs in Ext jS.
I have a tab panel containing multiple tabs and clicking individual tabs changes the URL. I'm currently using hash. However, I couldn't restore the app back when I use its " id + delimiter + other…

subbrl
- 327
- 4
- 15
3
votes
1 answer
To add button in tabpanel [extjs 3.2]
I want to add a button in marked place. Please can anyone help me out.
Thank you.

JackExtJs
- 71
- 6
3
votes
0 answers
Duplicate IDs rendered in ASP.NET AJAX TabPanel
I have two user controls (.ascx) in which I have an ASP.NET AJAX TabContainer control, each with two or three tabs (TabPanels). I use these controls in around 10 websites. All have worked fine, except the latest three websites. In those three, the…

Bryan B
- 720
- 6
- 16
3
votes
1 answer
How to set random animation on changing Tab Panel in sencha touch 2?
I'm still new to sencha touch 2 and currently I'm stuck at how to set different animation each
time user switch between tab panels. Can anyone give me some hints how to accomplish this?
Thank you very much in advance.

Eli
- 14,779
- 5
- 59
- 77
3
votes
3 answers
how to call a function on a controller when Tapping on TabPanel? Sencha Touch 2
I have a controller and a TabPanel in Sencha Touch 2, I want to call a function when an element is tapped on the TabPanel:
TabPanel.js
Ext.define('app.view.principalTabPanel', {
extend: 'Ext.tab.Panel',
alias: 'widget.ptabpanel',
config:…

lito
- 3,105
- 11
- 43
- 71
3
votes
2 answers
Removing a tab from tabPanel
var tabPanel = Ext.getCmp('tabPanel');
for(var i=1; i

Shashwat
- 2,538
- 7
- 37
- 56
3
votes
1 answer
How to create / destroy tab dynamically in sencha touch 2
I have a list of tabs, what I want is whenever i switch a tab, the items are added to the tab and it is redrawn, and the old tab is destroyed. I'm doing this for performance reasons.
This is how i tried to do it, but its not working
view= …

Dany Y
- 6,833
- 6
- 46
- 83