'deprecated' documentation page

2009-04-04 Thread Geof Sawaya
Hello, I noticed that the deployment page for 1.6 does not include the new Compiler class -- it describes deployment using the old GWTCompiler. Should this be submitted to issues? Thanks! --~--~-~--~~~---~--~~ You received this message because you are

Re: GWT import external jar

2009-04-04 Thread Qing
I added FinancialToolkit.gwt.xml into the jar. Doesn't work. do I need to put this file to the folder of OnlineBanker as well? On Apr 4, 12:16 am, Nicanor Babula nicanor.bab...@gmail.com wrote: Hi,         It looks like you have to add to your jar file FinancialToolkit.gwt.xml. This may

Re: Calling a function within a native javascript function

2009-04-04 Thread Vitali Lovich
You're callling it wrong. You still needs to call function2 using JSNI because the GWT compiler will mangle the name of function2 but won't realize that it needs to update the reference in the javascript code you are writing. 2009/4/3 alberto alberto.bu...@gmail.com: Hi I have theese two

Failed to load module

2009-04-04 Thread Chuck
Hi there! I'm a starter and I already got troubles running my project. I searched a lot of forums and old threads but I couldn't find a solution. I'm developing with Eclipse and there seems to be something wrong with the RootPanel.add(String).add(x). It works as long as the parameter of add() is

Re: Failed to load module

2009-04-04 Thread Vitali Lovich
Can you please post the exception you get? It should be in the log. On Sat, Apr 4, 2009 at 3:52 AM, Chuck kurtz.lu...@cyber-art.ch wrote: Hi there! I'm a starter and I already got troubles running my project. I searched a lot of forums and old threads but I couldn't find a solution. I'm

Re: Failed to load module

2009-04-04 Thread Chuck
Yes: [ERROR] Unable to load module entry point class website.client.Index (see associated exception for details) java.lang.NullPointerException: null at website.client.Index.onModuleLoad(Index.java:46) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at

Re: Failed to load module

2009-04-04 Thread Chuck
It's working now Hoooray! Actually I can't explain the reason for it. I've deinstalled IE 7 again and then I reinstalled it (including all bug fixes etc.). Since the first deinstallation I haven't changed the code and now it's working! Vitali, thank you so much for your support!

Re: Dependency Injection: rocket-gwt Vs gwtoolbox

2009-04-04 Thread wilfred
You might also want to take a look at Spring ME. It's not targeting GWT in particular, but it currently includes an example that uses it for a GWT application. Spring ME relies on compile time dependency injection, just like GIN. http://springframework.me/ On Feb 27, 10:07 pm, Arthur Kalmenson

Re: Calling a function within a native javascript function

2009-04-04 Thread alberto
Thanks Vitali Lovich, i solved the problem. As Vitali lovich said I was calling function2 in a wrong way(I am new to gwt). If someone has the same problem this link explains JSNI. http://googlewebtoolkit.blogspot.com/2008/07/getting-to-really-know-gwt-part-1-jsni.html On Apr 4, 8:55 am, Vitali

How do I implement NodeList?

2009-04-04 Thread scottland.yo...@googlemail.com
Hi all! I'm wondering how I can use NodeList with an XML file so output a list of values from tags of the same type: ResultSet result1st value/result result2nd value/result result3rd value/result result4th value/result ResultSet In case case I would like to output all the result tags, I am

Building your own GWT library

2009-04-04 Thread Gugle
Hi all, I'm trying to build a small GWT library of my own to implement a new widget. I have created a jar file with the java classes I've written. I added this jar file to my classpath in Eclipse and I can access these classes from my Eclipse project without any compilation errors. For e.g., I

Re: Compiling servlet classes

2009-04-04 Thread m...@gmail.com
Hi Sumit, Thomas, Thank you both for your explanations : that's ok now ! Cheers, Mathieu On 1 avr, 20:22, Sumit Chandel sumitchan...@google.com wrote: Hi Mathieu, Please follow Thomas' advice in his last post. I must have been sleep typing that night :-) Cheers, -Sumit Chandel On Wed,

Re: Building your own GWT library

2009-04-04 Thread gregor
Hi Gugle, yes, you need to make a module.gwt.xml file. you will then probably need to specify the source path in it - that can be as simple as: module inherits name='com.google.gwt.user.User'/ !-- inherit any other GWT modules your library uses -- source path=src/ // or whatever

opening new page

2009-04-04 Thread bhanu
Hi Friends, I am new to GWT. I have been going through some tutorials and some other stuffs. But I could not find out any thing regarding to open new different page. A Simple example is Login screen. Once the user successfully logged in, it should be able to open new page and should show his

resize imagebundle

2009-04-04 Thread L Frohman
I couldn't find any information on this. I have an application where the images get resized using setWidth(), setHeight(). This shrinks the images to the requested size. I changed the application to use ImageBundle, and the images come from AbstractImagePrototype.createImage(). But now, the

Why doesn't work my form?

2009-04-04 Thread milcsi04
Hi All! Please help me, if you can. I created an app with GWT, where i've a form, which call a non gwt servlet, because i want to upload files with using this form. I tried so many example from the net, where they upload files. My problem with this, the client code seems not to call the

Re: Announcing GWT 1.6 RC2 - issues with cancelKey()

2009-04-04 Thread S V Ramu
Is TextBoxBase.cancelKey() working ok now in 1.6? While replacing my old listeners to handlers, I notice that the new equivalent KeyDownEvent.stopPropogation() or .preventDefault() is not obeyed. When I tried back with the old cancelKey() it too didn't work. I would like to check if others have

Connecting to database with eclipse

2009-04-04 Thread Cryssyenddo
Hi, I'm fresh to GWT. I'm using eclipse to develop a GWT appication and i'm having problems connecting to my database. project name is vCarePortal. I've included my JDBC in eclipse in the project libraries, and here's my method at my vCarePortal.server package: private Statement stmt;

Re: resize imagebundle

2009-04-04 Thread István Szoboszlai
Hello, I had this problem, too. Actually it is how html works. Imagebundle creates css background, and the background image can not be resied AFAICT. Best - István On Sat, Apr 4, 2009 at 10:29 PM, L Frohman lfroh...@gmail.com wrote: I couldn't find any information on this. I have an

Re: How to load a new GWT app from another GWT app?

2009-04-04 Thread Tony Strauss
I suggest reading: http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ and http://groups.google.com/group/Google-Web-Toolkit/web/security-for-gwt-applications These links talk about GWT logins, cookies, and security. A lot of what is provided by sessions on the server

How to get internal widget to notify its parent widget when clicked (and have the parent execute something)

2009-04-04 Thread matttai
As per the title :) How to get internal widget to notify its parent widget when clicked (and have the parent execute something)? I think it has something to do with sinking and unsinking events but I haven't been able to find a very good example of doing this. Any help would be appreciated!

Re: opening new page

2009-04-04 Thread Tony Strauss
The Window.Location.assign() method allows you to move to a different page. http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/Window.Location.html --- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http://blogs.designingpatterns.com On

[gwt-contrib] review request: clean up the RPC compile-time noise

2009-04-04 Thread Freeland Abbott
Hey Lex, With regard to http://code.google.com/p/google-web-toolkit/issues/detail?id=3461, I'd like you to review the attached patch. The basic idea is probably the obvious one: record any problems with good detail, but into a ProblemReport object; we decide later (back at STOB.build()) whether

[gwt-contrib] GWT 1.6 #5110 SVN: MouseWheel event not working on Firefox3

2009-04-04 Thread aris
Hello I just found that the mousewheel event is working in all browsers but not in Firefox 3 (3.0.7) using a simple new GWT appl with: public void onModuleLoad() { HTML sp = new HTML(Hello World); RootPanel.get().add(sp); sp.addMouseWheelHandler(new

[gwt-contrib] Re: Add StyleInjector to GWT trunk

2009-04-04 Thread Miroslav Pokorny
Using individual rules naturally has pluses and minuses. In this case in which one wants to add rules on mass it's not appropriate thus appending new css to a particular stylesheet is more appropriateread on for my views and some developer benefits. Take the stylesheet included by one