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
5
votes
0 answers
Racket GUI tab-panel dynamic content
I am looking into GUI development with Racket. I would like to create a tab-panel%, with multiple tabs. The documentation says, that a switch of tab does only call a procedure and does not make a content change happen automatically. I think this is…

Zelphir Kaltstahl
- 5,722
- 10
- 57
- 86
5
votes
1 answer
Logo instead of application title Shiny
How can I put instead of title in Shiny app:
navbarPage("title",theme = shinytheme("flatly"),
tabPanel("Home",
some logo in the size of menu tab?
I tried this solution:
How can I insert an image into the navbar on a shiny…

user1997567
- 439
- 4
- 19
5
votes
1 answer
shiny- Why changing the order of tabpanels, tabPanel not displaying plot?
I am a newbie of shiny. I would like to upload data set from file and display it in a tabPanel. And the next step is to plot the data set and display the plot in another tabPanel. But I found that when the order of tabPanels was changed, the plot…

Just Rookie
- 209
- 3
- 8
4
votes
1 answer
How to create a “add tab“button in JAVAFX?
I want to create a button ,which will create a new tab to tabPane when clicking,and on the right of all tab alltime. I'll appreciate if there has any example how to do it.

indexalice
- 137
- 1
- 9
4
votes
1 answer
JavaFX TabPane tabs don't update position
I noticed that when adding and deleting tabs from a TabPane, it fails to match the position of the order of tabs in the underlying list. This only happens when at least one tab is hidden entirely due to the width of the parent. Here's some code that…

Brian Nieves
- 338
- 2
- 11
4
votes
1 answer
Switch a4j (richfaces) tabPanel programmatically with Javascript
When I click a commandButton, I would like to execute some js to switch the current tab panel to another tab panel. My tabPanel is switchType="client".

Core
- 840
- 11
- 24
4
votes
2 answers
How to get height of Ext.Panel to fill parent area
I have the following Ext.TabPanel:
var modules_info_panel = new Ext.TabPanel({
activeTab: 0,
defaults:{autoScroll:true},
//layout: 'fit', // makes component disappear
viewConfig: {
forceFit: true //has no effect
},
…

Edward Tanguay
- 189,012
- 314
- 712
- 1,047
4
votes
2 answers
GWT UiBinder TabPanel
How to define TabPanel in UiBinder in GWT. What's difference between TabPanel and TabLayoutPanel. Where to find additional info about TabPanel uibinder parameters.

Pavel
- 2,557
- 1
- 23
- 19
4
votes
1 answer
RichFaces: TabPanel and param
Currently, i am dealing with rich:tabPanel in my web application based on JSF 2.0.
I encounter a very strange problem, which is related to my richface component.
Basically, i print some same stuff on each panel (here, it is a schedule table of a…

user1843642
- 43
- 4
3
votes
3 answers
Extjs4 tabpanel, disable all child item without looping them
is there are any way to disable all child items on Extjs4 tab panel, without looping them.
my code:
var myPanel = new Ext.TabPanel({
region: 'east',
title: 'my panel title',
width: 200,
id: 'my-panel',
split: true,
…

jeewiya
- 571
- 11
- 24
3
votes
1 answer
Rich TabPanel's getters invoked when tab content not rendered
I have a question about RichFace's (3.3.3) TabPanel. I have worked on two projects that have used the TabPanel. On each project, I have noticed that components that are on tabs that are not visible still have their "getter" methods called.
For…

Steve
- 646
- 1
- 9
- 23
3
votes
1 answer
Same inputs on different tabPanels in navbarPage, Shiny R
I have a shiny app with ui that consist of a navbarPage with different tabPanels.
Inside those I would like to have the same buttons for every tab. So every tab has the same button that links to same inputs.
e.g.
ui <- navbarPage( theme =…

Randomcloud
- 51
- 6
3
votes
1 answer
extjs 6.5.2 modern - beforeremove, beforeclose, close not firing
I've noticed that tabpanel's beforeremove and panel's beforeclose and close are not firing. On the other hand destroy event is working fine. Are there any workarounds or different events with the same results?
I've reproduced my observation at the…

Zoti
- 822
- 11
- 31
3
votes
6 answers
Extjs: Reuse the same grid in TabPanel
in a Extjs application I have a Grid and a Tabs line over it. Content of the Grid depends on the selected Tab.
Say tabs has Jan-Feb-Mar-... values. Clicking of the Tab I would reload grid's store
Question: is it possible to avoid duplicating of…

olegtaranenko
- 3,722
- 3
- 26
- 33
3
votes
2 answers
Add button in header of tab panel in extjs
I have added a tab panel in Extjs. When i click on second tab i would like to see a component in header area of tab panel,
at red mark, below in the image.

Sparrow
- 355
- 4
- 19