Questions tagged [gwt-bootstrap]

GWT-Bootstrap is a GWT library representing Twitter's bootstrap components, styles, and plugins.

61 questions
0
votes
3 answers

Get value from bootstrap gwt java datetimepicker

I'm trying to use a bootstrap3 datetimepicker in my gwt java web application, but I'm not sure if I'm doing everything ok, since it seems it doesn't pass the value of the field. Here is my code: datePicker = new DateTimePicker(); …
JamieITGirl
  • 161
  • 1
  • 11
0
votes
1 answer

Adding links/images to the GwtBootstrap popover component

I'm using a Popover component of the GWtBootstrap - org.gwtbootstrap3.client.ui.Popover. I need to add few Clickable images that invoke java method. As popover does not let you add any widget to its content, I can use the following code to add…
chitresh sirohi
  • 275
  • 1
  • 14
0
votes
1 answer

GWT Java rpc call working; however, replacement GWTBootstrap - rpc call not working

I am just starting to use bootstrap to convert an existing GWT project. The original rpc call works in the following code. However, the replacement is placed straight after the original code and "Connection failed - please retry." is displayed on…
Glyn
  • 1,933
  • 5
  • 37
  • 60
0
votes
1 answer

gwtbootstrap3-extras slider does not work properly on IPhone6s (OS.10.2.1)

I tried to use the Slider in my project. When I tried to drag it using Chrome developer environment with device emulation turned on the tool-tips showing the current value are visible, but I cannot drag it. When I tried the very same project on my…
HHeckner
  • 4,722
  • 4
  • 23
  • 33
0
votes
1 answer

Remove parent element from GWT UIBinder

I have a GWT generated accordion element from GWTBootstrap which produces something similar to the html below:
coderwurst
  • 161
  • 3
  • 14
0
votes
1 answer

GWTBootstrap3.extras.select: How to add open/close handler for drop-down menu of the multiselect?

In my case I need to do some actions just after closing drop-down menu, not on checking, since I use multiselect mode of the control.
Nikolay Shabak
  • 576
  • 1
  • 7
  • 18
0
votes
1 answer

Accessing text in the GWT TextBox from ChangeEvent

I'm dynamically generating a form based on data received from an RPC call into a FormFieldData object which has details about the field to be rendered such as, Field Name, expected length and type of input, if the field is a required field or not…
Rohit
  • 106
  • 2
  • 15
0
votes
1 answer

Creating GWT Grid Table with constant column

I want to create table and add a widgets to the table. My requirement to add widgets in the table with exactly three column and the number of widgets is dynamic For example, MyGrid myGrid = new MyGrid( 3 ); // Three Columns //first row myGrid.add(…
schoolcoder
  • 1,546
  • 3
  • 15
  • 31
0
votes
2 answers

Intellij IDEA, GWT-Bootstrap, autocomplete

.center { margin: auto; …
0
votes
1 answer

Gwt Bootstrap add Image to dropdown menu not submenu

I have to display image instead of text in bootstrap drop down menu (not in sub menu). I don't know how to achieve this. Can anyone help me in achieving that?
Birlla
  • 1,700
  • 2
  • 15
  • 17
0
votes
1 answer

GWT Bootstrap Responsive Design of existing webapp with screens

I have a working web application developed with GWT. Now that it has to resize on a tablet or smaller screens I thought of using GWT Bootstrap. But the existing application has only one project.html and project.css file under war folder. Currently…
beeCoder
  • 495
  • 6
  • 24
0
votes
1 answer

dynamic css background-image in gwt

I have a page with some offers and I want to display for each offer one photo as thumbnail. The thumbnail image has fixed width and height, so I need to resize and crop original image. I would like to use background-size: cover. My problem is that…
maya
  • 49
  • 7
0
votes
1 answer

CellTable - How can I do rowspan and colspan

I have a CellTable and I wanna do a rowspan and colspan, but CellTable don't give methods for this. In my ui.xml I have my CellTable.
Paulo Eduardo
  • 43
  • 2
  • 9
0
votes
1 answer

How put a mask in a TextInputCell?

I have a TextInputCell in a Column, like this: TextInputCell textCell = new TextInputCell(); Column hourColumn = new Column(textCell) { public String getValue(EffortCost object) { …
Paulo Eduardo
  • 43
  • 2
  • 9
0
votes
1 answer

How can I use scriptaculous.js with GWT Bootstrap in a GWT project

I have been using animation effects from scriptaculous.js in my GWT project. Recently I have added GWTBootstrap library into my project. After that the effects from scriptaculous.js has stopped working. If I disable the following line "inherits…
Nava
  • 21
  • 3