gwt2 Questions
2
Solved
How do you remove defaul GWT style from CaptionPanel widget ?
In my .ui.xml I tried pretty much everything. I tried setting stylePrimaryName and styleName to my classname. I also tried defining .g...
1
Solved
Could you guys tell me why css class definition doesn't work in following example ?
I'm using GWT 2.4 + Chrome 17.
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g='urn:import:c...
2
Solved
I wonder if there is an API for using Database Storage in GWT 2.x or I should use native code like this instead?
var database = openDatabase("Database Name", "Database Version");
database.execute...
4
Solved
I'm trying to use the new GWT CellTable widget but my table needs to support one row expansion, i.e. there is a zippy on the left of a row and when it's clicked, the row should expand to provide mo...
4
Solved
I see nothing in the documentation except a reference to include some "CssResource" and get it with ClientBundle, but how do I exactly override the tbody and th of a CellTable?
Is this possible?
1
Solved
I have a custom widget that is actually an image, and i would like to be able to drag it inside an AbsolutePanel and get its coordinates every time. I would like to use the new DND API from GWT 2.4...
Marchand asked 11/9, 2011 at 20:48
1
Solved
I a using GWT 2.3.In which I am using import com.google.gwt.user.client.ui.Tree. I want to show tree expanded always.For that I did below code for every tree item
treeItem.setState(true);
But i...
1
Solved
I am using Cell Table in GWT.In that cell table I am adding these columns.
TextColumn<Document> idColumn = new TextColumn<Document>() {
@Override
public String getValue(Document ob...
5
Solved
I am trying to integrate with the new GWT Editor framework of GWT 2.1.0. I also want to add my validation checks into the framework. However, I am struggling to find a decent example how to do this...
1
Solved
I'm using the following code as part of the GWT server-side class (servlet) for GWT-RPC.
private void getImage() {
HttpServletResponse res = this.getThreadLocalResponse();
try {
// Set content ...
4
I'm trying to use Eclipse Indigo with Google Plugin for Eclipse (GPE), but can't found GPE 3.7. I mean, that i'll be satisfied with GPE 3.6.
Now i have this error with GPE3.6 installation:
Cannot...
Crimmer asked 25/3, 2011 at 8:56
3
Solved
How do you get an object from one Place to another?
For example, I have a ContactsView with a table of Contacts, and the corresponding ContactsActivity/Place classes. If I want to edit a contact, ...
2
Solved
I need to limit what Dates a user can pick from the com.google.gwt.user.datepicker.client.DateBox.
I can't seem to figure out how to limit the min Date so they can't pick past dates.
If I can't d...
Natelson asked 13/4, 2011 at 22:36
2
Solved
In my GWT application, on the client side Java file, I have written a line to print the Locale:
System.out.println(Locale.getDefault());
Here Locale is an instance of java.util.Locale.
I'm gett...
1
Solved
I was going through the tutorial available on GWT website for StockWatcher application and testing the application as described in Step4: Manage Events on the Client.
Below piece of code behaves d...
1
Solved
How does it work?
I see no tags defined for example to add a CellTable in a UiBinder.ui.xml file, like
The documentation is sparse on this.
So if it doesnt work, where should I put the cell wid...
2
Solved
I am trying to bind a field of the primitive type "int" to an editor. My editor extends ValueBox<Integer>, since generics in Java can only use object types.
When I compile my application, I ...
2
Solved
I'm developing a project, using GWT.FireFox Browser and Eclipse IDE.
when the project is running and i refresh my browser for client package changes, it takes too long. maybe 6 to 10 seconds.
may...
1
Solved
I accidentally used HashSet and HashMap defined under the package com.google.gwt.dev.util.collect in the client side code. Found out the package does not have a module xml file and hence these coll...
2
Solved
General approach in GWT is to use Panels and then apply custom CSS themes to get a customized look. While I can achieve a certain extent of personalization of my GWT app through CSS tinkering, I wa...
© 2022 - 2024 — McMap. All rights reserved.