Questions tagged [gwt-widgets]

24 questions
0
votes
3 answers

How to remove "no data" labels from empty nodes in GWT?

I have a widget that inherits from CellTree. If the node not have the child elements, this node can be opened and shows "no data" label. I'd like to see nodes without child's displayed as empty. That's how I fill the tree. My…
user1134181
0
votes
2 answers

GWT Array of checklist click handler not working

i have been trying to generate an array of check boxes and dynamic click handler for them but the handler is not working. Any suggestion will be most welcomed. Thanks in Advance for the time. private void addButtonListener() { …
Akash Narayan
  • 300
  • 3
  • 14
0
votes
1 answer

Google Wallet Integration through custom widget in Vaadin6

I need to integrate Google wallet into my Vaadin 6 application, downloaded wallet api/demo from here. First I was trying to run this given sample into vaadin but after a long effort I am stuck now. Tried lots of ways/examples , studied lot about…
SSH
  • 1,609
  • 2
  • 22
  • 42
0
votes
1 answer

do GWT widgets scale?

On a Google IO Talk it was mentioned that widgets make your apps run slow and you should avoid them at all cost. But I would like to use the gwt-bootstrap widget library. This would pollute my ui.xml with a lot of widgets. The reason I use this…
Vjeetje
  • 5,314
  • 5
  • 35
  • 57
0
votes
2 answers

How to display GWT widgets on RootPanel?

I have a
in My.html file:
Now i wrote a java class which fetch the test division using…
Amit Pal
  • 10,604
  • 26
  • 80
  • 160
0
votes
0 answers

gwt-tree css style

I am having difficulty styling the gwt-tree widget. I have used .gwt-Tree { padding-top: 4px; padding-left: 0px; font-weight: bold; color: #0066CC; width: 14.5em !important; } .gwt-Tree .gwt-TreeItem { padding-left: 0px…
Android_enthusiast
  • 863
  • 5
  • 22
  • 41
0
votes
2 answers

SetDate in textBox?

I create widgets for date for my project. n using the same widget for setProperty and getProperty of a object. public TextBox getTimeTxtbx() { // TODO Auto-generated method stub timebx =new TextBox(); …
NewCodeLearner
  • 738
  • 3
  • 14
  • 38
0
votes
1 answer

How to share data resources between widgets in GWT

I am using GWT and AppEngine for a project. I would like to know how can I share data (ArrayList objects)between widgets, so I could centralize the logic and reduce the number of RPC calls to the server. I have thought of two ways, but I don't know…
Berry
  • 59
  • 1
  • 10
-1
votes
2 answers

StackLayoutPanel Shows white ends at the rounded corners

I'm using GWT's StackLayoutPanel and trying to round the corners of its headers by applying border-radius attribute in the following CSS rule: .mm-StackPanelHeader { padding-left: 7px; font-weight: bold; font-size: 1.4em; width: 200px; …
GingerHead
  • 8,130
  • 15
  • 59
  • 93
1
2