GWT-Bootstrap is a GWT library representing Twitter's bootstrap components, styles, and plugins.
Questions tagged [gwt-bootstrap]
61 questions
1
vote
2 answers
Javascript is not attaching to the DOM
I have got one issue here. I am using bootstrap css and gwt in my application.
In my uibinder page, I am using gwt textbox, and applying a style ("date") as shown below.
Also bootstrap-datepicker.js…

yogish
- 85
- 17
1
vote
1 answer
GWT/GWT Bootstrap - Pagination (SimplePager)
I have a celltable and I'm trying implement pagination, but it doesn't work. I looked for solutions but without any success. I click in next page, nothing happens. I forgot to implement something? Someone can help me? Thanks for attention! Below, my…

Paulo Eduardo
- 43
- 2
- 9
1
vote
1 answer
How to override bootstrap css in GWT Bootstrap 2.3
My css are overridden by bootstrap css.
Bootstrap is injecting css after my css.
Is there any why to add my css after injected css.
I know that we can use !important to achieve this, But it is not flexible as I need add it to every property.

Chandan Reddy
- 499
- 4
- 23
1
vote
1 answer
GWT-Boostrap3 Dropdown, Dropdownmenu widgets do not have changehandler
Currently I am using GWT-bootstrap3 dropdown and dropdownmenu widgets. These widgets are in uibinder.xml file. In .java file, I am not able to handle change event on these widgets.
For example, If i select different options from dropdown, I need to…

yogish
- 85
- 17
1
vote
1 answer
Upgrading GWT, Bootstrap and GWT-Bootstrap
Currently I am using GWT 2.5.1 and Bootstrap 2.3.2 versions. And also I am using GWTBootstrap (com.github.gwtbootstrap.Bootstrap) 2.2.1.0 version.
I need to upgrade GWT to 2.6 ,Bootstrap to 3.1 and GWTBootstrap to 2.3.2.0-Snapshot versions. These…

yogish
- 85
- 17
1
vote
1 answer
GWT Bootstrap programmatically reset ButtonGroup
I have a GWT Bootstrap ButtonGroup of radio type that I've created programatically in my GWT app. The creation looks more or less like:
ButtonGroup bg = new ButtonGroup();
bg.add(new Button("Button 1"));
bg.add(new Button("Button…

Adam Parkin
- 17,891
- 17
- 66
- 87
1
vote
2 answers
Is there a PickList widget in GWT?
There is a PickList widget in PrimeFaces JSF component library?
Does GWT (or any other GWT component library) has such a widget?

Halil
- 1,795
- 1
- 24
- 39
1
vote
1 answer
GWT-Bootstrap: Two responsive navbars conflicting
I'm doing a project in GWT and want to use twitter bootstrap for the layout. So I'm now using the gwt-bootstrap 2.2.1.0 library. I want to have two responsive navbars, one as header and one as footer.
When I shrink the screen and the buttons…

Niek Verduin
- 11
- 2
1
vote
1 answer
How can I get browser to prompt to save password using gwt bootstrap?
I have a login page containing a gwt bootstrap text box ,password text box and submit button

Ekata
- 259
- 2
- 7
- 21
1
vote
1 answer
No Glow in Select Control of gwt-bootstrap
I activated gwt-bootstrap in my gwt application. But, I cannot see any glow in SELECT control. On the other hand, there is glow effect around the textarea control. How can I enable glow effect around SELECT control.
Following is my uibinder xml:
…

Halil
- 1,795
- 1
- 24
- 39
1
vote
1 answer
Increasing the height of root panel in gwt
I have a html panel and i want to add the html panel to browser screen hence i used rootPanel.get().add(htmlPanel);. But their is a extra space between the starting of the screen and the first widget in html panel (As in image). I tried with setting…

Ekata
- 259
- 2
- 7
- 21
1
vote
1 answer
Does gwt-bootstrap work outside of UiBinder?
All the examples for gwt-bootstrap that I've come across show the use of Twitter Bootstrap styles inside a UiBinder XML file.
But what if I don't like UiBinder?
What if I want to use raw Widgets, or what if I want to use a CssResource client bundle,…
user1768830
1
vote
3 answers
Bootstrap Modal with button(img) that hangs over the edge
I'm trying to have a close button "hang" off the corner of my modal, something like this: https://i.stack.imgur.com/YEkZk.png
I've tried giving the corner image display:inline;float:right; and some relative positioning, but nothing gets displayed…
user854894
1
vote
1 answer
horizontal controlgroup with togglebuttons in gwt bootstrap
I'm trying to build a gwt bootstrap form with some boolean values.
As they are multiple selectable its usually checkboxes. That works.
But I find checkboxes ugly and would prefer another look and feel, for example buttongroup with…

Markus Kreth
- 748
- 7
- 26
1
vote
2 answers
How Do I apply custom styles in a GWT project that uses GWT-Bootstrap
I am using a GWTBootstrap Modal for my project, the problem is that it's width is too narrow for my liking.
I inspected the styles that it gets with firebug and saw this
.modal {
background-clip: padding-box;
background-color: #FFFFFF;
border: 1px…

nikhil
- 8,925
- 21
- 62
- 102