Gwt module may need to be (re)compiled

2009-12-18 Thread Haydar
Hi, I have a problem with running my project which is linked to another project. One of my applications is simple user log-in system, it only has a welcome screen where you can log in the system. This works fine alone. The other application is a big system where we have a lot of menus, screens

Re: Gwt module may need to be (re)compiled

2009-12-18 Thread Shawn Brown
However after I login and the location of the window changes, I see nothing but an error-boxon the screen: Gwt module 'secondApp' may need to be (re)compiled. I just have 2-months experience on gwt and I feel really desperate about this problem. Can anyone please help me? So did you

Re: Gwt module may need to be (re)compiled

2009-12-18 Thread Haydar
yes of course :) sorry about not mentioning that... İ recompiled many times. Cleaned and built both project many times... On 18 Aralık, 11:09, Shawn Brown big.coffee.lo...@gmail.com wrote: However after I login and the location of the window changes, I see nothing but an error-boxon the

Re: Gwt module may need to be (re)compiled

2009-12-18 Thread Thomas Matthijs
However after I login and the location of the window changes, I see nothing but an error-boxon the screen: Gwt module 'secondApp' may need to be (re)compiled. This error usually means that you are missing the ?gwt.codesrv= (sp?) parameter, probably gets lost in your redirect to the page --

Re: Browser development plugin for IE 8.0 doesn't appear to install

2009-12-18 Thread Thomas Broyer
On Dec 18, 8:18 am, Sky myonceinalifet...@gmail.com wrote: When I launch my GWT 2.0 app and paste the URL into IE 8.0 it says Development Mode requires the Google Web Toolkit Developer Plugin and so I install the plugin supplied but when I refresh the page, even after restarting the browser,

cant see the incubator paging table when moved to gwt2

2009-12-18 Thread ben fenster
does anyone knows why the paging table stopped working on gwt2.0 ??? there is 0 compile errors -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from

Re: Chrome loading indicator

2009-12-18 Thread Andrey
I found the solutuion. Chrome shows the loading indicator if connection was made immediately from the body onload(), i.e. from onModuleLoad(). Do not connect to the server immediately but schedule a timer and connect after a second or more. This works for me: Timer timer = new Timer() {

Re: GWT Simcity like game

2009-12-18 Thread hemodroid
I create a Div element for each tile of the map. For a big map this can lead to a lot of dom elements instanciations and a long loading time of the map. I dont know much about html Canvas, especially its crossbrowser supports. I will look after it to see if it can overcome the div limits. Thx for

Draggable Markers when generating directions

2009-12-18 Thread Francois
Hello, I am trying to make the markers generated by google directions to be draggable, the same way as the online google maps application. However I cannot seem to find the option to set this. I have already implemented the draggable marker with the normal red markers. Can someone point me to a

Re: GWT Simcity like game

2009-12-18 Thread Eirik Brandtzæg
Hey Yeah I had a quick look at the code (html that is) and saw what you did. I made a simple demo long long time ago: http://eirikb.no/Pirate-wars/ using canvas. But canvas has downsides, such as browser support, and I think even GWTCanvas is put on hold? Anyway, using just images in divs might

gwt 2.0 plugin crashes firefox 3.5 in OS X 10.4

2009-12-18 Thread Pardeep Sood
Hi, I have just upgraded to gwt 2.0 and added an eclipse plugin for os x 10.4.11. Running in development mode, i was asked to download gwt-dev plugin. After downloading it, the firefox doesn't start and crashes. I then started firefox in safe mode and disabled all plugins and removed the gwt

Re: Use smartgwt or not

2009-12-18 Thread András Csányi
2009/12/17 azure rockan...@gmail.com: Hi all, There are many gwt experienced developers in this group. I am starting a project and am in a dilemma where to use smartgwt or not. There are many advantages of using it (like filters/sorting in list grids etc). However I think there will be many

LayoutPanel with PCT Units in IE 6.0

2009-12-18 Thread NoPain
I'm trying to place the instance of LayoutPanel into the PopupPanel (auto-hide=false, modal =true). Everything works fine in FF, but in the IE (6.0) the following happens: the content of the LayoutPanel (buttons, labels, e.t.c) is not shown iff the UNITs used in setWidgetTopHeight (or any other

GWTCompiler Launch problem (Eclipse Plugin)

2009-12-18 Thread bosakm
I started getting the following error when I try to launch the GWTCompiler from RAD 7.5. The weird thing is that it worked the night before. Cannot run program C:\Program Files\IBM\SDP75\runtimes\base_v61\java \jre\bin\javaw.exe (in directory C:\workspaces\RAD7.5\milcvs1-HEAD-

Change links behavior in RichTextArea

2009-12-18 Thread Oskar NRK
Hi! I'm developing a project with GWT using RichTextArea. My code modifies the text in the RichTextArea transforming some parts of the text in links, but when I click on a link it doesn't open. I know it's obvious because it's an editor. So I'm trying to implement a little popup that has to appear

Read-only RichTextArea?

2009-12-18 Thread Elchin
Is there a way to make RichTextArea read-only like TextArea.setReadOnly (true)? What I need in my application is the possibility to edit the rich text only by buttons in toolbar, and not through typing. -- You received this message because you are subscribed to the Google Groups Google Web

Can't inherit com.google.gwt.dev.util.collect

2009-12-18 Thread Jim
I'm trying to use the om.google.gwt.dev.util.collect.HashMap class in my source code, but Eclipse (Galileo 3.5) fails with the following error: Loading inherited module 'com.google.gwt.dev.util.collect' [ERROR] Unable to find 'com/google/gwt/dev/util/collect.gwt.xml' on your classpath; could

Re: How do GWT webpages (HTML) map to java files.

2009-12-18 Thread K.R.A.3
hi, 1) case 1: *Web Application* GWT is very powerful so that you can build a full blown RIA application. That mean a single page application with no page reload. So just fill a widget with whatever content you need, for that do an async request(RPC or basic HTTP) to server back end and populate

Eclipse stack trace not linked to source code

2009-12-18 Thread fermierul
I have gwt 2.0 and eclipse 3.5 When running a web application, I sometimes get runtime exceptions for which I see the stacktrace in the Eclipse / Development Mode view. I can see here the classes and the line numbers, but there is no link on any line to automatically direct me to the corresponding

GWT 2.0 Embedded GWT application inside IFRAME

2009-12-18 Thread nemo
Hi ... we have a GWT 1.5 application that launches another GWT application (plugin) in an iframe. The main application communicates to the embedded plugin using JNI calls. We are trying to upgrade to 2.0 but have run into the following issues. 1) We can debug the main application via the browser

Re: Development mode crashes Safari 4.0.4 in OS X 10.4

2009-12-18 Thread Par
I am also having the same problem on 10.4.11. Safari and Firefox both crash. If anyone please let us know if we all are missing something here. Thanks. On Dec 16, 4:58 am, PaulG paulgen...@gmail.com wrote: On Dec 13, 3:22 am, Jan Ehrhardt jan.ehrha...@googlemail.com wrote: 10.5 is available

Re: How do GWT webpages (HTML) map to java files.

2009-12-18 Thread Prashant Gupta
Hi On Wed, Dec 16, 2009 at 10:35 PM, Saeed saee...@gmail.com wrote: I would like to know how webpages map to specific Java methods please like in Struts we have struts.xml and JSF we have faces-config.xml I have no idea about struts JSF, I think you want to ask where to specify servlets

Re: GWT 2.0 - com.google.gwt.user.client.rpc.IsSerializable is mandatory again?

2009-12-18 Thread Alexander De Leon
For now I'm using the GWT compile button of the eclipse plugin to force a proper GWT 2,0 compile. This seems to work for me. The problem must be that some older GWT compiler is been executed somehow. Alex On Dec 14, 3:17 pm, Addy adityaka...@gmail.com wrote: I cleanup after every build but

gwt 2.0 plugin crashes firefox 3.5 in OS X 10.4

2009-12-18 Thread Par
Hi, I have just upgraded to gwt 2.0 and added an eclipse plugin for os x 10.4.11. Running in development mode, i was asked to download gwt-dev plugin. After downloading it, the firefox doesn't start and crashes. I then started firefox in safe mode and disabled all plugins and removed the gwt

gwt 2.0 plugin crashes firefox 3.5 in OS X 10.4

2009-12-18 Thread Par
Hi, I have just upgraded to gwt 2.0 and added an eclipse plugin for os x 10.4.11. Running in development mode, i was asked to download gwt-dev plugin. After downloading it, the firefox doesn't start and crashes. I then started firefox in safe mode and disabled all plugins and removed the gwt

how to keep running non-2.0 compatible apps

2009-12-18 Thread csillag
Hi all, I have some applications which (for reasons not discussed here) can't be easily ported to GWT 2.0, so I would like to run them with GWT 1.7.1. I can configure the version of GWT used using google settings in eclipse, but even if I configure gwt 1.7.1, when I run the project, the hosted

On Module Load called twice - resolved

2009-12-18 Thread leslie
Disregard my earlier message. I was able to resolve the issue of the method being called twice simply by recompiling. It's no longer called twice. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Using Gilead with GWT 2.0 ms1

2009-12-18 Thread lucamen
Hello, I'm working on a GWT 2.0 project with hibernate integration via Gilead. When I try to load data from database (on GWT 1.7 everything was working properly) I get this error Parameter 0 of is of an unknown type 'java.lang.String/2004016611' and googling I've found this thread. I downloaded

Re: UIBinder and themes?

2009-12-18 Thread Matt Moriarity
The new layout panels don't have any visual styling. You can manually apply CSS to the splitter bar, although I'm not sure off the top of my head what the correct class name is. Firebug or Safari/Chrome's dev tools should let you find out. On Dec 13, 4:03 am, Ben Harris bharri...@gmail.com wrote:

Deploying RPC Apps to Tomcat

2009-12-18 Thread Russ
Hi, I am using Tomcat 5 on A Win2000 server running IIS 5. I am using Google Web Toolkit 1.7.1 SDK Bundle for Eclipse 3.5. The first GWT app I deployed using the instructions on code.google.com (full URL below) worked just fine. Any subsequest deployments do not work. I get the error: The

Unable debug gadgets on Shindig container

2009-12-18 Thread Cymun
Hi all, I'm using GWT to develop an iGoogle gadget, but after upgrading to gwt2.0 I can't activate the Development Mode on my local environment. I run the gadget on a local Shindig contaner by an url like this:

Re: Fewer compile permutations using ant: Can user.agent be passed in via command-line?

2009-12-18 Thread BugRoger
Hi Anders, We use seperate modules for each compile mode. Then we pass a parameter into the build file to make it pick up the different modules. For example: TachyonField.gwt.xml - Contains all common settings but no entrypoint TachyonField_dev.gwt.xml - Inherits the base module

Re: GWT 2.0 + Mac OS X Leopard + Eclipse 3.5.1 + Java 6: NSConditionLock unlock error messages?

2009-12-18 Thread Madprof
FWIW, I get the same behavior. I did a quick fix by editing the .launch and build.xml files so that .XstartOnFirstThread were suppressed. OTOH, I'm kinda freaked out by this; would like assurance that this is really a bug in the toolkit and that -XstartOnFirstThread is really supposed to work.

Re: Development Mode Firefox 64bit Linux Issue

2009-12-18 Thread leszek
I was having the same problem (RedHat 64 bit) but it works as expected after upgrading firefox to 3.5 level. I had also another problem: GWT compiler failed (crash in native code) if eclipse galileo was started with 64 bit JVM (jdk1.6.0_17) but as project JVM 32 bit Java (jdk1.6.0_04) was used.

gwt plugin on eclipse/fedora linux

2009-12-18 Thread Henry HO
hi, i'm trying to use the gwt plugin in eclipse for linux, but can't get it to work. the plugin is installed but, when i go to create a new project, the Web Application Project choice isn't there and there is no mention of Google in the Preferences menu (unlike eclipse/os x). has anyone been to

Glassfish start problem: Cannot start JMX connector

2009-12-18 Thread kavitha G
Hi All, INFO: Launching GlassFish on Apache Felix OSGi platform Welcome to Felix. = INFO: Started bundle org.glassfish.common.glassfish-mbeanserver [9] INFO: Started bundle org.glassfish.core.kernel [79] INFO: Started bundle org.glassfish.common.common-util [59] INFO: Started

Re: Global keyboard handling

2009-12-18 Thread Matt Moriarity
See Event.addNativePreviewHandler (or something like that). This will capture every DOM event. You can handle your keyboard events there. On Dec 13, 4:47 pm, Dorinel dorinel.munte...@gmail.com wrote: How should I handle global keyboard event (for a game) it seems it's possible as there is a

Re: Using Gilead with GWT 2.0 ms1

2009-12-18 Thread lucamen
Hello, I'm working on a GWT 2.0 project with hibernate integration via Gilead. When I try to load data from database (on GWT 1.7 everything was working properly) I get this error Parameter 0 of is of an unknown type 'java.lang.String/2004016611' and googling I've found this thread. I downloaded

Re: Development Mode Firefox 64bit Linux Issue

2009-12-18 Thread liteso
eggsy84's solution worked for me. Ubuntu 9.10 64-bit / FireFox Can't install the plugin, but right clicked the install link, copy link, paste, go and it installed! On Dec 11, 11:52 am, eggsy84 jimbob...@hotmail.com wrote: Hi all, I found that if (using Firefox) I went directly to the link

On Module Load called twice

2009-12-18 Thread leslie
Hello. I've recently upgraded to GWT version 2.0 and I'm building with Eclipse version 3.5 on Mac OS X and working with Java 5. I've created a module that contains an EntryPoint. I've implemented the method onModuleLoad and I've placed print line statements there. I can see that the method is

Google Finance Portal

2009-12-18 Thread Valerie
I am interested in building an application similiar in format to finance.google.com. Is there any source code available? I would like to find out how the portlets are implemented, layouts, any pointers. Also, is this basic GWT - no extensions? Thanks. -- You received this message because

Problem of Unable to determine my ip

2009-12-18 Thread Ji
Hi guys, I had problem on running GWT project. I use fedora 11 + eclipse3.5.1 ,when i run the GWT project, it throws a exception: java.lang.RuntimeException: Unable to determine my ip, then Stopping AppEngine server. Could anybody help, thanks advance. -- You received this message because you

Re: GWT 2.0.0 work with eclipse 3.5 (latest) plugin

2009-12-18 Thread Miguel Méndez
The eclipse plugin version 1.2 does with work with GWT 2.0.0. The zip installs do not include the GWT or App Engine SDKs. On Thu, Dec 17, 2009 at 3:09 PM, finneycanhelp lovefin...@gmail.com wrote: Hi, Does the eclipse Plugin currently work with GWT 2.0.0? I think it does. I searched the

Re: GWT 2.0 + Mac OS X Leopard + Eclipse 3.5.1 + Java 6: NSConditionLock unlock error messages?

2009-12-18 Thread Jim Douglas
Which files did you edit? On Dec 17, 11:59 am, Madprof kickingve...@gmail.com wrote: FWIW, I get the same behavior.  I did a quick fix by editing the .launch and build.xml files so that .XstartOnFirstThread were suppressed. OTOH, I'm kinda freaked out by this; would like assurance that this

Re: Best Practice for ImageResource in ClientBundle

2009-12-18 Thread Thomas Broyer
On Dec 9, 4:36 pm, Eric Landry eric.s.lan...@gmail.com wrote: Hi, I'm trying to get my app working with GWT2 and was wondering if there's anything wrong about the following code: public interface MyImages extends ClientBundle {     public static final MyImages INSTANCE = GWT.create

Re: how to keep running non-2.0 compatible apps

2009-12-18 Thread Miguel Méndez
On Thu, Dec 17, 2009 at 9:03 AM, csillag csillag.kris...@gmail.com wrote: Hi all, I have some applications which (for reasons not discussed here) can't be easily ported to GWT 2.0, so I would like to run them with GWT 1.7.1. I can configure the version of GWT used using google settings in

Is this a CSS problem?

2009-12-18 Thread David C. Hicks
I have a set of forms that look great in Firefox, but in IE (6, 7, and 8) I'm seeing several formatting type problems. Fonts seem to run together from top to bottom, and my modal dialogs take more space - to the point that my Save/Cancel buttons are pushed off the bottom of the dialog. My best

Re: An internal compiler exception occurred...

2009-12-18 Thread Jeff Chimene
Reported as issue 4374 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

Re: GWT Simcity like game

2009-12-18 Thread Mohamed Mansour
Wow, your website is faster in Firefox than Chrome. It seems you have done a lot of DOM manipulation than JavaScript On Dec 15, 11:13 am, hemodroid hemodr...@gmail.com wrote: Hi, I'm working on a simcity like game developed with GWT. For any question or feedback dont hesitate to contact me ;)

Adding lines to Trees in GWT 2.0

2009-12-18 Thread John Ivens
So, TreeImages is deprecated and I should use Tree.Resources... Suppose that I have graphics to represent the tree bits. Could someone tell me how to tell the tree to draw itself, and where to put the graphics in the directory structure? Thank you. -- You received this message because you are

An IncompatibleRemoteServiceException was thrown while processing this call

2009-12-18 Thread leslie
Mac OS X 10.5.7 Firefox 3.5 Eclipse 3.5 Java 5 GWT 2.0 Hello, I have a class on the client side which makes RPC calls to a servlet. The class is able to successfully call one of the methods in the servlet. But when I attempt to call another method in the same servlet, I catch an object of

Re: HostedMode requires plugin for internal browser

2009-12-18 Thread lazins...@gmail.com
Hi I found this thread: https://groups.google.com/group/google-web-toolkit/browse_thread/thread/e097b6d6878e168e but for me just removing hosted.html file did not work, I copied hosted.html file from project in conf a) and it works, then just for sure I removed whole compiled module from war

Re: HostedMode requires plugin for internal browser

2009-12-18 Thread lazins...@gmail.com
sorry for broken link the right one: https://groups.google.com/group/google-web-toolkit/browse_thread/thread/e097b6d6878e168e On 18 Gru, 17:25, lazins...@gmail.com lazins...@gmail.com wrote: Hi I found this thread:https://groups.google.com/group/google-web-toolkit/browse_thread/thre...

Re: GWT Simcity like game

2009-12-18 Thread hemodroid
I use the DOM.createDiv() and Node.appendChild() methods of the GWT api. Those methods are natively implemented in javascript; 99% of the dom manipulation is done at loading time to display the whole map. Later i only update very short portions of the dom tree when u update the map. I dont

Re: Geolocation without Gears?

2009-12-18 Thread Gal Dolber
All modern browser support html 5 Geolocalization API. So you dont need gears. http://dev.w3.org/geo/api/spec-source.html 2009/12/17 Eric Ayers zun...@google.com Unfortunately, when there is no match for the IP address, the google.loader.ClientLocation property will be null. If you've got the

Re: Is this a CSS problem?

2009-12-18 Thread Jim Douglas
This won't help with IE6, but you might want to test in IE8 standards mode (as opposed to quirks mode). On Dec 18, 7:04 am, David C. Hicks dhi...@i-hicks.org wrote: I have a set of forms that look great in Firefox, but in IE (6, 7, and 8) I'm seeing several formatting type problems.  Fonts seem

Re: On Module Load called twice

2009-12-18 Thread leslie
This issue was resolved after I recompiled my build. On Dec 17, 5:28 pm, leslie web-...@elephantstask.com wrote: Hello.  I've recently upgraded to GWT version 2.0 and I'm building with Eclipse version 3.5 on Mac OS X and working with Java 5. I've created a module that contains an EntryPoint.  

Re: Eclipse plugin Development Mode issue (uses GWTShell)

2009-12-18 Thread Silverado
How do you get Eclipse to use your version of GWTShell? Thanks in advance. On Dec 17, 2:10 pm, Henry q8e...@gmail.com wrote: The Eclipse plugin uses GWTShell.class (a deprecated class) instead of DevMode.class The options for GWTShell and DevMode are quite different. I'm using a directory

Re: gwt plugin on eclipse/fedora linux

2009-12-18 Thread Rajeev Dayal
What version of Eclipse are you using? Do you see any errors mentioned in the error log (Window - Show View - Error Log)? The Google Plugin for Eclipse depends on WST. Check out this FAQ entry for more details: http://code.google.com/eclipse/docs/faq.html#wstinstallerror On Thu, Dec 17, 2009

Re: GWT 2.0 + Mac OS X Leopard + Eclipse 3.5.1 + Java 6: NSConditionLock unlock error messages?

2009-12-18 Thread Rajeev Dayal
Hi Jim, A couple of questions: -What version of Java 6 is installed on your machine (do a java -version to find out)? Do you experience the same problem with a different version of Java 6 (not sure if Apple allows you to have multiple minor JDK versions on your system at the same time), or with

How to embed one gwt app in another?

2009-12-18 Thread Andrey
Hello, i'm using GWT 1.7 I have a gwt app which is already deployed to external server. Now I want to include that app in my new GWT application. I tried that using iframe, but now Hosted Mode fails with [ERROR] Unable to find 'xxx.gwt.xml' on your classpath where xxx is from my other

Which sound library to use with GWT 2.0?

2009-12-18 Thread amich...@gmail.com
Hello, I was wondering which library I should use for playing .wav sounds in GWT 2.0. Amir -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this

RequestBuilder.sendRequest() failing in firefox but not IE

2009-12-18 Thread Derek
Hi I recently upgraded to GWT 2.0 along with GXT 2.1. My application was working properly back at GWT 1.7, and now it mostly works fine with 2.0. But there is a problem with web requests and responses I can't figure out. When run in hosted mode and debugging in Java with Eclipse everything is

Non-Obfuscated class name in CSSResource

2009-12-18 Thread paloalto team
I would like override an existing class, specifically the .gwt- TabLayoutPanelTabs, in the context of a UiBinder without jacking all the rest of those instances outside of my container. So far, I am able to achieve this by dropping in a class name in the parent, but then it is repeated for each

Re: GWTCompiler Launch problem (Eclipse Plugin)

2009-12-18 Thread bosakm
It's real big. I'm getting around it right now by adding an ANT build task to the War project's list of builders. On Dec 18, 9:30 am, Miguel Méndez mmen...@google.com wrote: I've seen this problem on Windows when a classpath gets too long.  How big is your eclipse project's build path? On

Re: GWTCompiler Launch problem (Eclipse Plugin)

2009-12-18 Thread bosakm
Part 2: It would be nice, when launching the GWTCompiler in the plugin, to be able to specify the specific jars/directories for it to use (similar to being able to specify the classpath in an ANT script). On Dec 18, 9:30 am, Miguel Méndez mmen...@google.com wrote: I've seen this problem on

Deprecated XXXListenerCollection warnings when migrating to GWT 2.0

2009-12-18 Thread Raziel
Hi, I'm migrating my application from GWT 1.7 to GWT 2.0, and everything seems ok except for the warning below every time I compile: ] Adding '69' new generated units ] Validating newly compiled units ] [WARN] Warnings in 'generated://

Re: Deprecated XXXListenerCollection warnings when migrating to GWT 2.0

2009-12-18 Thread Raziel
Is it maybe because my RPC calls use generics and all these XXXListenerCollection classes extend ArrayList? I still don't see the relation, except the compiler overgeneralizing the generic definitions. On Dec 18, 5:57 pm, Raziel raziel...@gmail.com wrote: Hi, I'm migrating my application from

Re: GWT 2.0 + Mac OS X Leopard + Eclipse 3.5.1 + Java 6: NSConditionLock unlock error messages?

2009-12-18 Thread Rajeev Dayal
Hi Jim, I was unable to reproduce this issue. I was using the following platform: Mac OS X 10.5.8 Java 1.6.0_17 Eclipse - Java Edition, 64 bit, Cocoa (running with Java 1.6.0_17) Now, here's the thing: -XstartOnFirstThread IS added the command-line, but that is intentional; we did that so that

Problem about characters with dead key.

2009-12-18 Thread Bruno Pinto A. de Oliveira
Hello there, I'm novice about GWT and I found a problem and i don't have idea how do fix it. Ok, I created one DialogBox and set a title with this text Autenticação and show Autentica��o ok I tried use html code like ccedil;atilde; and show Autenticaccedil;atilde;o on caption. How can I fix it?

GWT Plugin for Eclipse 3.6

2009-12-18 Thread RadhikaSunil
Is there GWT plugin for Eclipse 3.6 ? Will the 3.5 version work for 3.6 ? I get the following error when trying to install on 3.6: Cannot complete the install because one or more required items could not be found. Software being installed: Google Plugin for Eclipse 3.5 1.2.0.v200912062003

Code Splitting: how to improve left over code behavior

2009-12-18 Thread WiseBoggz
I am working on an app that is about 700K in size, and so I decided to look at this great new 2.0 feature to reduce the initial download. The app is pretty moduralized, so it seemed like a good candidate for code splitting -- each module should download its code only once it's accessed for the

begin with GWT

2009-12-18 Thread zizou84
hi i began with gwt and i had a difficulty to understand this expression: In GWT, all state is purely client-side. A GWT application could be opened multiple times in multiple browsers, and each window would essentially have its own instantiation of the application. Hence each window could be in

gwt 2.0 code splitting problem running locally

2009-12-18 Thread John Malpas
I am adding code splitting to an existing project. I noticed some problems trying to run the application compiled for the web, but opening the local copy of files. So I tried this experiment: Use 2.0 webAppCreator to make a simple project (simple_project.html etc.) Add the simple example of code

Re: Using Gilead with GWT 2.0 ms1

2009-12-18 Thread Josh Martin
What worked for me was to add the files Trevor specified to 'my' project, and not into the original gilead source directories. You just have to make sure to match the original package directory he specified of: src/com/google/gwt/user/server/rpc in your project directory. Any project that you

similar Panel used in iGoogle

2009-12-18 Thread Nandeesha GS
Hi All, Do we have Panel in GWT similar to Panel used in iGoogle , where I can drag and drop and reposition widgets ? Regards Nandeesh -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: GWT 2.0 + Mac OS X Leopard + Eclipse 3.5.1 + Java 6: NSConditionLock unlock error messages?

2009-12-18 Thread Rajeev Dayal
Jim, One other question - are you using Eclipse's Development Mode View, or did you set the USE_REMOTE_UI environment variable in your launch configuration to disable it? If you did, I think I can see why you're running into problems. We've got a bug in the plugin where we're not removing

Re: GWT Plugin for Eclipse 3.6

2009-12-18 Thread Rajeev Dayal
No, there is not. We have not tested the plugin against Eclipse 3.6 as yet. On Fri, Dec 18, 2009 at 11:12 AM, RadhikaSunil sunilradh...@gmail.comwrote: Is there GWT plugin for Eclipse 3.6 ? Will the 3.5 version work for 3.6 ? I get the following error when trying to install on 3.6: Cannot

Re: GWT 2.0 + Mac OS X Leopard + Eclipse 3.5.1 + Java 6: NSConditionLock unlock error messages?

2009-12-18 Thread Jim Douglas
-XstartOnFirstThread IS added the command-line, but that is intentional Ahh, that's useful information! Would it be possible to make that a configurable option? I just generated the trivial Web Application Starter Project, and it runs without generating those error messages. But I'm not sure

Re: FormPanel submit problem

2009-12-18 Thread Qi Zhang
Hi, Tom Thanks for your useful explaination. Based on your suggestion, I have successfully parsed the paramters using the Apache FileUpload. Thanks again...Qi On Mon, Dec 14, 2009 at 1:01 AM, Thomas Broyer t.bro...@gmail.com wrote: On 11 déc, 12:22, Qi Zhang qzha...@gmail.com wrote: Hi,

Re: Problem about characters with dead key.

2009-12-18 Thread Thomas Broyer
On 18 déc, 19:39, Bruno Pinto A. de Oliveira brupi...@gmail.com wrote: Hello there, I'm novice about GWT and I found a problem and i don't have idea how do fix it. Ok, I created one DialogBox and set a title with this text Autenticação and show Autentica o ok I tried use html code like

Re: Non-Obfuscated class name in CSSResource

2009-12-18 Thread Thomas Broyer
On 18 déc, 23:34, paloalto team bpodevt...@gmail.com wrote: I would like override an existing class, specifically the .gwt- TabLayoutPanelTabs, in the context of a UiBinder without jacking all the rest of those instances outside of my container. So far, I am able to achieve this by dropping

Re: Hosted mode won't work since 2.0 upgrade

2009-12-18 Thread Lucas Ceni
Just update your eclipse gwt plugin that will work. I had the same problem and now is working on hosted mode. On 16 dez, 09:52, Adam S servic.a...@gmail.com wrote: Copying another version of eclipse worked for me. After that i retrieved code from my SVN server and everything is as it was

Re: Problem of Unable to determine my ip

2009-12-18 Thread darrell pfeifer
On Dec 16, 9:22 pm, Ji jimzhang...@gmail.com wrote: Hi guys, I had problem on running GWT project. I use fedora 11 + eclipse3.5.1 ,when i run the GWT project, it throws a exception: java.lang.RuntimeException: Unable to determine my ip, then Stopping AppEngine server. Could anybody help,

Re: gwt plugin on eclipse/fedora linux

2009-12-18 Thread Henry HO
stupid me... it was a permissions' issue. i had installed eclipse as root user; but installed gwt plugin as a regular user. so eclipse's installer was unable to write to plugins directory. i wish eclipse would warn me because it did say installation was ok... On Dec 18, 10:25 am, Rajeev Dayal

Re: [gwt-contrib] Inlining nocache.js

2009-12-18 Thread George Georgovassilis
Thanks Matt, that does the trick. Actually I'm just post processing a template host html page with an ant task before deployment, that solves the decoupling concern. On 17.12.2009 21:06, Matt Mastracci wrote: If it's the same error we ran into, it's that there are things that look like HTML

Re: [gwt-contrib] Re: wrong DTD generated for modules in GEP

2009-12-18 Thread David
Hi, Small question: Is there a reason why GWT is still using a DTD instead of a schema ? In Schema's you can put a lot extra information (inline docs) and eclipse also supports completions with schemas if you put the schema in the XML repository. David On Thu, Dec 17, 2009 at 11:59 PM, Fushion

[gwt-contrib] Re: uibinder and bnudled CSS

2009-12-18 Thread nicolas.deloof
Right, I got the warning but did not understand what it related to. Thanks a lot On 17 déc, 23:20, John Huss johnth...@gmail.com wrote: I think you have to escape the css attributes that start with a dash like this: \-moz-box-shadow: 2px 2px 5px #000; You should be getting a warning about

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-18 Thread Brad Leupen
Arthur, No, we are not closing DevMode. Our client app is not small. Refreshing DevMode in 2.0 takes 20-30 seconds on a decent multi-core workstation. Often, we are only able to refresh a handful of times before we start running into out-of-memory exceptions and browser crashes (FF 3.5.6). I

[gwt-contrib] New member posting policy

2009-12-18 Thread Chris Ramsdale
Dear Contributors, Unfortunately, the GWT Contributors Group has been getting a lot of spam attacks as of late and most spam posts have been making it through. To fight against these spam attacks, we will be temporarily moderating messages posted by new members to the group. The GWT contributor

Re: [gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-18 Thread Xavier M.
same problems unfortunately 2009/12/18 Brad Leupen qcomps...@gmail.com Arthur, No, we are not closing DevMode. Our client app is not small. Refreshing DevMode in 2.0 takes 20-30 seconds on a decent multi-core workstation. Often, we are only able to refresh a handful of times before we

[gwt-contrib] Trivial fix for issue 3956 (REGRESSION: r5292 broke Opera support for History)

2009-12-18 Thread t . broyer
Reviewers: jgw, Description: This is a *really* trivial fix. Please review this at http://gwt-code-reviews.appspot.com/126812 Affected files: user/src/com/google/gwt/user/History.gwt.xml Index: user/src/com/google/gwt/user/History.gwt.xml

[gwt-contrib] [google-web-toolkit] r7334 committed - Tagging 2.0.0-rc2.

2009-12-18 Thread codesite-noreply
Revision: 7334 Author: sco...@google.com Date: Fri Dec 18 07:07:21 2009 Log: Tagging 2.0.0-rc2. http://code.google.com/p/google-web-toolkit/source/detail?r=7334 Added: /tags/2.0.0-rc2 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r7335 committed - Tagging 2.0.0.

2009-12-18 Thread codesite-noreply
Revision: 7335 Author: sco...@google.com Date: Fri Dec 18 07:07:53 2009 Log: Tagging 2.0.0. http://code.google.com/p/google-web-toolkit/source/detail?r=7335 Added: /tags/2.0.0 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Use cellIndex and sectionRowIndex in HTMLTable::getCellForEvent

2009-12-18 Thread t . broyer
Reviewers: jgw, Description: See http://groups.google.com/group/google-web-toolkit-contributors/t/a0b141cf7ea77a56 This is done by using com.google.gwt.dom.DOM's TableCellElement and TableRowElement, so I also changed everything (exception public/protected APIs) from

[gwt-contrib] Re: Using cellIndex and rowIndex/sectionRowIndex to get cells' position in tables

2009-12-18 Thread Thomas Broyer
On Dec 16, 3:16 pm, Joel Webber j...@google.com wrote: Thomas, Your assessment that this is an accidental legacy is basically correct. This code should definitely be optimized -- if you could file an issue, that would be helpful. Hopefully it makes little difference in practice, because of

Re: [gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-18 Thread Scott Blum
Thanks for the feedback Brad. We've talked internally about an idea for instant compile where the workflow would be essentially like hosted mode, except it would very quickly translate your code into JavaScript with zero optimizations. It sounds like there might be some interest in this. (Of

Re: [gwt-contrib] wrong DTD generated for modules in GEP

2009-12-18 Thread Miguel Méndez
The 2.0.0 release has been tagged. The DTD references should be correct now. Thanks for pointing this out! On Thu, Dec 17, 2009 at 10:56 AM, Arthur Kalmenson arthur.k...@gmail.comwrote: Hey everyone, I just noticed that the DTD used in the GWT modules generated by the GEP is incorrect. It

[gwt-contrib] Fix two CompileReport XML issues

2009-12-18 Thread kprobst
Reviewers: Lex, Description: Hi Lex, could you review this patch for me? It fixes two XML issues in the CompileReport: 1) There was a bug in the escapeXML method that would let all special characters after the first one slip through. This is now fixed. 2) Because of the difference in encoding

Re: [gwt-contrib] Re: wrong DTD generated for modules in GEP

2009-12-18 Thread Miguel Méndez
On Fri, Dec 18, 2009 at 5:09 AM, David david.no...@gmail.com wrote: Hi, Small question: Is there a reason why GWT is still using a DTD instead of a schema ? In Schema's you can put a lot extra information (inline docs) and eclipse also supports completions with schemas if you put the schema

  1   2   >