The GWT TabLayoutPanel component
Questions tagged [gwt-tablayoutpanel]
36 questions
1
vote
2 answers
Add tab dynamically using a tab item in GWT
I want to create a tabbed page and load different information on each tab click.
I want to be able to add tabs dynamically when clicked the '+' tab.
So, on clicking '+' a new tab should be added to the same tabLayoutPanel.
Any suggestions on how to…

user3106657
- 95
- 4
- 11
1
vote
0 answers
GWT CellTable within TabLayoutPanel: no line wrap of data
I want to display several CellTables within a TabLayoutPanel. Each tab has a single wrapped CellTable as it's widget.
My problem is: if I have a table which has many columns, in my case 12, the content flows to the right of the panel, means that…

diskostu
- 143
- 1
- 11
1
vote
1 answer
TabLayoutPanel selection handler triggers multiple times
Currently I'm working with GWT TabLayoutPanel and got some problems.
My application uses Activities and Places to manage browser history. With TabLayoutPanel I'm trying to store tabs in history by doing placeController.goTo() in…

ebogdanov
- 25
- 5
1
vote
2 answers
bugs about using DataGrid wrapped by StackLayoutPanel
I tried to use DataGrid and put it in the stacklayoutpanel.At the time when I provide the data for the ListDataProvider, the CellTable is not visible in the browser because it's on a non active tab (although it's visible in the DOM tree). After…

Joey
- 2,732
- 11
- 43
- 63
0
votes
1 answer
CellTable is not visible in TabLayoutPanel
I have an EntryPoint class WebCrawlerOne.java which contains the TabLayoutPanel and in one of the tabs I am calling CrawlerOne.java which contains the CellTable. I have tried a lot but am not able to find any error whatsoever. I have tried to search…

Prince
- 20,353
- 6
- 39
- 59
0
votes
1 answer
GWT Focus on TabLayOutPanel
How do i set the focus on a TabLayoutPanel? I currently have two tabs and i need to programatically set the focus on one Tab.I figured out that there is not method in TabLayoutPanel API which supports this.
Also my 2nd question is , i need to move…

Barry
- 1,585
- 3
- 22
- 35
0
votes
1 answer
Adding Arbitrary Text Beside Tabs with GWT's TabLayoutPanel
Currently, I have a TabLayoutPanel with a few tabs, inside of each tab is a set of breadcrumbs. I would like to be able to display my breadcrumbs right next to the tabs (inside the TabBar itself). I haven't yet seen any instance of someone having…

Chris Cashwell
- 22,308
- 13
- 63
- 94
0
votes
1 answer
How to add a scrollbar to an absolutepanel in GWT
my problem is that I have a lot of AbsolutePanels in GWT an they are drawn as if they were a TabLayoutPanel ( the GUI looks like a TabLayoutPanel, however, it is not one, it is made of a lot of AbsolutePanels ).
So, now I have the problem that as…

Bernd
- 593
- 2
- 8
- 31
0
votes
2 answers
Inner TabLayoutPanel content not visible
All,
I want a tab menu pane that lives inside my main ScrollPanel. Everytime a user clicks a menu option from my main page the centre ScrollPanel removes whatever widgit was there before and adds a new one.
Its worked fine so far that is until i…

Primus
- 265
- 1
- 3
- 10
0
votes
1 answer
GWT tab panel - how to put the tabs on the bottom
I have been struggling with a problem and searching the web did not yield any result.
Basically I am trying to create in GWT ( plain GWT without ext or smart) a tab panel.
The catch is that I need the tabs to be on the bottom of the panel, not at…

Vlad Turian
- 3
- 3
0
votes
1 answer
GWT TabLayoutPanel inside ScrollPanel
I'm trying very hard to understand GWT's layout system that they introduced in 2.0. It's supposedly recommended, but it seems much more complex that the old way.
What I want to do, (which I feel is a very basic design) is build an application with a…

Troncoso
- 2,343
- 3
- 33
- 52
0
votes
1 answer
Set css from GWT (dynamically) to element with multiple styles associated
I have an instance of TabLayoutPanel where number of tabs would be set dynamically. Therefore to align tabs to fill whole width of the screen I need to
1) Override gwt-TabTayoutPanel default value width 16384px with auto !important (done);
2) Set…

Johnny
- 154
- 2
- 13
0
votes
1 answer
GWT TabLayoutPanel not allow text selection on tabs
Hi is there a way to not allow text selection on tabs for GWT TabLayoutPanel (and other gwt widgets)?
I tried to use css like:
.gwt-TabLayoutPanel {
user-select: none;
}
.gwt-TabLayoutPanel .gwt-TabLayoutPanelTabs {
user-select:…
user2323664
0
votes
1 answer
Dynamically add tabs in Tablayoutpanle using UIBinder
To be clear i'm a newbie to GWT.I was looking around for samples to implement dynamic tabs, and found this link, http://www.java2s.com/Code/Java/GWT/AddingnewtabdynamicallyExtGWT.htm , in which they make use of GXT.But my question is,how can i…

Karthik207
- 493
- 9
- 27
0
votes
1 answer
Celltable within TabLayoutPanel in GWT
I'm new to GWT.I have been searching around samples for embedding celltable within TabLayoutPanel tabs using UIBinder.Can anyone provide me with code samples?.Thanks.

Karthik207
- 493
- 9
- 27