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
2
votes
2 answers
ExtJS 4 Arrow Navigation for Tab Panel
I'm trying to make the tabs in tabpanel navigable using arrow keys.
As tabpanel has no key events, my guess was to create a KeyMap or
a KeyNav and attach it to the panel this way:
This is part of the tabpanel def, it's inside another…

Agus
- 61
- 1
- 8
2
votes
2 answers
I have a few GUI's in MATLAB and I need to view them in different tabs
I have 3 GUI files created using GUIDE. I need to have a tab Panel where I can view all of them in different tabs.

Leena Suresh
- 43
- 1
- 5
2
votes
1 answer
Matlab TabPanel usage
I am trying to use the application TabPanel Constructor v2.8. I have followed the instructions given with it. In the openingfcn of my gui I need to select one of the tabs. For it, I should use the tabselectionfcn which is adjunct with the mentioned…

julianfperez
- 1,726
- 5
- 38
- 69
2
votes
2 answers
extjs Tab content won't display
In the code below, if I set the activeTab to 0, the contents of /viewer/welcome show up as expected. If I set activeTab to 1 (like below), the second tab is activated on load, but when I click on the first tab, the content never displays. I can…

boatcoder
- 17,525
- 18
- 114
- 178
2
votes
2 answers
ExtJS4 - Extending Ext.tab.Panel to prevent setting of height values
I am migrating an application from ExtJS 3.x to v4 and have been having some troubles with the TabPanel's now that the "autoHeight" property has been removed. I know that if you do not explicitly define a height for the panel it is assumed to be…

Bill Dami
- 3,205
- 5
- 51
- 70
2
votes
4 answers
Vertical tabs in Flex 4
I would like to have vertical tabs in Flex 4. I have started implementing this by having a vertical list down one side. On list selection I am updating the selection index of a view stack. This gives the functionality of vertical tabs.
My problem is…

RNJ
- 15,272
- 18
- 86
- 131
2
votes
1 answer
extjs 4 rendering tooltip on grid on tabpanel
i am working with Extjs 4 & using Designer 1.2.0
i am facing problems with grid's renderer function that i am using to display tooltip. The grid is placed in tab panel. Everything works fine for first time when i open tab panel,but when i close tab…

S R
- 674
- 2
- 18
- 45
2
votes
3 answers
Change the Height of an ExtJS 4 Tab
Context: I'm writing an ExtJS application to help volunteers manage a camp database. Containing emergency information, dietary requirements and cabin allocation. I want it to be user-friendly so that volunteers will pick it up quickly, so I decided…

Cain
- 181
- 1
- 1
- 7
2
votes
1 answer
Sencha Touch: Ext.Map within TabPanel
I'm quite new to sencha touch. The goal is to create an app which has a TabPanel containing four Tabs, one of them should be a map (the others are a NestedList and two Panels working like a charm). I've tried to make the map card…

Günter
- 23
- 1
- 4
2
votes
1 answer
JavaFX: How to set a listener to the TabPane header onClick event
This is a weird question so I'll make my best to explain myself properly.
What I'd like is to trigger an event when a Tab in a TabPane get clicked, and by "clicked" I mean just clicked, not necessarily selected.
I already tried using the…

Celeste Capece
- 1,306
- 2
- 11
- 20
2
votes
2 answers
Add component inside TabPanel from Material UI React
I am trying to create a dashboard component using the material-ui tabs. I want in each tab a different component to be rendered, It works but I get this warning in the console dozen times when my page loads.
index.js:1 Warning:…

Veselin
- 43
- 1
- 7
2
votes
1 answer
ContentPanel AutoSize gxt
I am implementing a user interface using gxt. I have mainForm class with TabPanel.
TabPanel has few TabItems. On orderManagmentTabItem I have a ContentPanel.
TabPanel mainFormTab = new TabPanel ();
mainFormTab.setAutoHeight(true);
…

BraginiNI
- 576
- 1
- 16
- 30
2
votes
1 answer
R Shiny: Dynamic tabs within multiple navbarPage tabPanels
I'm creating a Shiny app with multiple tabPanels using navbarPage(). In each separate tabPanel, you choose a few input parameters, click on a button and it stores the output in a separate tab within that tabPanel. I used the script of K.Rohde to…

Marjolein
- 77
- 7
2
votes
1 answer
R Shiny: Dynamically creating tabs with output within navbarPage()
I am trying to create an app using navbarPage() (or something similar) where you choose certain inputs in the sidebar, and when you click on a button it will show the results in a separate tab. I created an example, using the script of K.Rohde below…

Marjolein
- 77
- 7
2
votes
0 answers
tabpanel and wasted white space
I am creating a simple shiny app with some valuebox and three datatables.
If I design the app without using tabpanel everything works fine.
library(shiny)
library(shinydashboard)
library(DT)
ui <- dashboardPage(
dashboardHeader(title = "Dynamic…

Sundown Brownbear
- 491
- 1
- 5
- 15