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
0
votes
1 answer
Button Event not getting fired when put inside Tab Panel in Sencha Touch 2
I have put two buttons inside a tab Panel in Sencha Touch 2 application. The code is given below:
var btnAttendance = Ext.create('Ext.Button', {
text: 'Take Attendance',
padding: 10,
width: 200,
handler: function () {
…

Nitin Agarwal
- 563
- 1
- 6
- 19
0
votes
0 answers
List in tab.panel overlays other panels
im creating an app with Sencha Touch 2 right now and got a strange behaviour. I've created a tab.panel to hold different detail-views. One of this views is a list.
At the moment there are only two panels inside my tab.panel. When i declare the list…

pyriand3r
- 667
- 1
- 8
- 18
0
votes
0 answers
How to refresh particular tab of rich tabpanel?
I have rich:tabPanel with switchtype as client.
When i did page refresh in 3rd tab its navigating to first tab. Please find the code snippet below.
Please suggest how to refresh only recall tab.
Also if I use switch type as server or ajax, command…

user2164684
- 1
- 1
- 2
0
votes
1 answer
Alternative for GWT TabPanel .Not working in Development Mode
Since Tabpanel doesn't work in Development Mode, it only works in Standard mode. So it means we can't debug our code if we use TabPanel.
so How to make TabPanel from Horizontal or Vertical layout by ourself?

Tom
- 825
- 1
- 8
- 28
0
votes
1 answer
Access Dynamically Created Controls in a TabPageControl
I am creating a bunch of UserControls each in a tab in a TabControl. The problem I'm having is I need to access a value from the controls. I have no idea how to do this.
string q;
foreach (TabPage tp in tabControler.TabPages)
{
Filter f =…

Nurdism
- 578
- 1
- 9
- 20
0
votes
2 answers
asp.net and google maps inside a tab panel
I have troubles with a map inside a tab panel.
This is what I show:
http://www.pixelfarm.it/gmaps.png
If I resize the browser window all goes ok.
How can I solve this? Thanks in advance

Fabio Garzoli
- 11
- 1
- 2
0
votes
1 answer
ExtJs tab panel random disappear
I've an Ext.tab.Panel that contain in each tab some object (that are Ext.panel.Panel).
When I try to switch between tabs the items contained in the tab random disappear, like in the picture.
Is it a known issue or have I made a mistake?
Thank you…

Marco
- 1,284
- 4
- 17
- 41
0
votes
2 answers
Sencha Touch 2.1: How to create/destroy tab content to increase performance?
I've got a TabPanel in my ViewPort with 4 tabs; is it possible to keep the tabs itself (the 'buttons' to tap), but remove/create the content/the dom if not visible?
I'm looking for something like tab.removeContent() and tab.createContent(), I…

swalkner
- 16,679
- 31
- 123
- 210
0
votes
2 answers
javafx setFocus after tabPaine change
Problem:
Have tabPane tabs OK.
In the first tab there is a text field. I am able to get focus on this field when starting the application.
After changing the tabs and coming back to the first tab I want focus to be on this textfield (barcodereader…

Stein Kråbøl
- 1
- 1
- 2
0
votes
1 answer
How do i set the active tab in a tab container without using the index of the tab?
I have a tab container, call it tbcSP. it has three panels, each with id's that run offIss, workIss and katIss.
Now, I use a link to go to the page where the tab container is kept, using a query string. There I have no issues. I can get the id of…

Nicholas Aysen
- 568
- 3
- 18
- 40
0
votes
1 answer
Ext JS tabpanel won't fit window size
Someone wants a panel done in Ext JS to dynamically fit the window size. I'm not familiar with Ext, but after hours of searching, I haven't found a working solution. Here is the code that is expected to be fixed:
var histotab =…

charmarel
- 69
- 1
- 7
0
votes
1 answer
An extra td with spacer.gif is inserted by richfaces between the tabs generated using richfaces:tabpanel
I need to create tabs and using richfaces:tabpanel component.
The probelm is an extra is genearted by richfaces which contains spacer.gif and thus the tabs have space between them.
I tried using the richfaces:tabpanel property…
0
votes
1 answer
GWT: CellTable inside FlowPanel inside TabPanel
I have a CellTable widget (item that extends Composite and has a CellTable + Pager via UiBinder), which is inside a FlowPanel, which is the contents of a tab for a TabPanel.
I've set the height and width programmatically (for now) on all so…

James
- 1,237
- 4
- 22
- 43
0
votes
2 answers
Collapse TabPanel in Window
I have an Ext.Window with border layout. This window contain a grid and a TabPanel. This is my TabPanel:
tabMsg = new Ext.TabPanel(
id:'TabPanel',
region : 'south',
plain : true,
collapsible: true,
titleCollapse:'Modify?',
…

AfanfeFana
- 159
- 4
- 15
0
votes
1 answer
How to insert a asp:TabPanel inside a asp:Repeater?
When I try to execute the below code it gives me the error "There was an error rendering the control. Check to make sure all properties are valid".
Inner repeater works fine inside the tab container. But outer does not allow to have a tab panel…

Buddhi Madarasinghe
- 698
- 5
- 15