Hi guys, I'm writing an application with GWT and I found on the internet that there's a library to use easily gdata features. In particular I need to use the integration with Google Calendar. I followed the official guide on gwt-gdata site to do the authentication ( http://code.google.com/p/gwt-gdata/wiki/GettingStarted ) but unfortunate...
I have a this code for the layout :
grid = new Grid(15, 15);
tiles = new Tile[15][15];
for (int i = 0; i != 15; i++)
{
for (int j = 0; j != 15; j++)
{
tiles[i][j] = new Tile('a');
grid.setWidget(i, j, tiles[i][j]);
tiles[i][j].setVisible(tru...
For example current page is www.google.com.
But I typed a different website address in address bar and clicked. This site has fully
GWT code.
But I like to back to the previous page of www.google.com.
So I clicked back button of browser.but how can I get event of back button from current
GWT code. Can I set any backbutton event handler ...
I'm writing a web application with GWT and I've to call google calendar's API to retrieve some information. I now have this dilemma: Is it better to use a client side invocation (using javascript or gwt-gdata library) or using the standard google library for java to call the service at server side and then passing all the data to the cli...
how can i implement jquery expression if($("[name='abc']:checked").length > 1) in GWT??
...
Hi folks,
I have a GWT application and wanna to test load and functionality using a tool like jmeter.
I am not sure jmeter is right tool for GWT. Can anybody direct me to proper tool or can tell me how to do it with jmeter?
I want to test login functionality: I have two text box 'User name' and 'Password' on login screen and want to te...
In GWT, is there a way to find out the user's physical location (country, state etc)?
...
Is there a way to add a Google gadget to Google maps application.
I wanted add this (Local gas Price) gadget
http://www.google.com/ig/directory?type=gadgets&url=marketingknight.com/google-gadget/local_gas.xml
gadget to my Google map application whenever the user clicks on a maker on the map, is this possible?
...
I have a Deck Panel with AnimationEnabled(true). I want to know when the animation completes when i change the deck in order to perform other tasks.
...
I have a TextBox on a Panel and I want to be notified when the value of the 'TextBox' changes.
I have tried the following event handlers:
ChangeHandler
ValueChangeHandler
KeyPresshandler
My problem is that the ValueChangeHandler and ChangeHandler only fire when the focus leaves the controls. The KeyPressHandler fires correctly, but ...
Hi,
i need an idea how to remove tab if Button within this tab has been clicked.
thx.
...
I have the following code from a GWT Project that is part of the onModuleLoad() method (similar to Java's main method, if you don't know GWT):
final TextBox t1 = new TextBox();
final Label lt1 = new Label();
t1.addKeyUpHandler(new KeyUpHandler() {
@Override
public void onKeyUp(KeyUpEvent event) {
// TODO Auto-generate...
Is this possible to list available alphanet of the current locale in GWT?
...
Hello,
I used GWT 2.0 since a few days. So, I try to code an basic application with a login form and a page accessible only if i am logged.
Usually in my web application with jsf for example, I use Spring Security 3.0 to configure and secure that kind of application.
So, I decided to try to do the same thing with my GWT 2.0 application...
Can anyone please help me with setting up GWT hosted mode with Weblogic? I found plenty of resources, but they seem to be geared towards Tomcat.
Also GWT 2.0 seems to output and generate slightly different files than before which may also affect the setup.
I am running Weblogic outside of Eclipse, using Weblogic 9.2
ANY help would b...
I have a gwt image object . In my code I set my visibleRect like this:
btnSearch.setVisibleRect(-64,-80,16,16);
So when I run my code with firebug the html looks like this:
<img border="0" style="width: 16px; height: 16px; background: url("http://tempest/deltaflow/Content/Images/icon.png&quot;) no-repeat scroll 64px 80px tr...
I have a GWT application that works great on all platforms/browsers etc.
Then we tried Windows 7 Starter Edition. For all browsers (Chrome, IE, Firefox) none of the dynamically displayed data appears in the application.
We know that the machine is ok because Google Wave works fine and its also a GWT application.
I'm at a loss. What co...
I used SimpleCheckBox.wrap(DOM.getElementById("x1")); in onModuleLoad()but
when i checked that checkbox and press the submit button then another page will be displayed
but when i click back button then i need to checkbox to be checked how can i maintain state of checkbox in GWT?
currently checkbox`s state cant be persisted.it seemed to ...
I have a uibinder that has a bunch of textboxes on it, instead of adding a focus handler on each one I was wondering if I can add a focus listener to the enclosing panel and get notified when each textbox gains focus?
...
I need to insert a [number of] uiBinder-based widgets into another one, at a particular spot. The inserted widget has a somewhat complicated layout, so I am trying to define it in HTML.
referencePanel.add(...) fails with java.lang.IllegalStateException: This widget's parent does not implement HasWidgets. Don't know which widget's pare...