Re: problem about the module entry point of my application

2008-10-16 Thread [EMAIL PROTECTED]
Perhaps the problem has a link with my xml file.this is my xml file: module !-- Inherit the core Web Toolkit stuff. -- inherits name='com.google.gwt.user.User'/ !-- Inherit the default GWT style sheet. You can change -- !-- the theme of your GWT application by

problem about the module entry point of my application

2008-10-16 Thread [EMAIL PROTECTED]
Hello, i've built a gwt project with projectCreator and applicationCreator.I have the default page when i try to run my project.It works correctly.But when i modify the application class MyApplication and i write this code package com.gwt.client; import com.google.gwt.core.client.EntryPoint;

Re: problem about the module entry point of my application

2008-10-15 Thread [EMAIL PROTECTED]
I downloaded EXT 2.0.5 and i added it to my project Lothar Kimmeringer a écrit : [EMAIL PROTECTED] schrieb: this is the list of libraries i added to my project:gwt-dev- window.jar, gwt-user.jar, gwtext.jar.i don't know what javascript library you speak about.can you be more explicit

Re: problem about the module entry point of my application

2008-10-15 Thread [EMAIL PROTECTED]
this is the list of libraries i added to my project:gwt-dev- window.jar, gwt-user.jar, gwtext.jar.i don't know what javascript library you speak about.can you be more explicit please? Lothar Kimmeringer a écrit : [EMAIL PROTECTED] schrieb: description: '$wnd.Ext.StatusBar' a la valeur

Re: problem about the module entry point of my application

2008-10-15 Thread Lothar Kimmeringer
[EMAIL PROTECTED] schrieb: this is the list of libraries i added to my project:gwt-dev- window.jar, gwt-user.jar, gwtext.jar.i don't know what javascript library you speak about.can you be more explicit please? Cited from http://code.google.com/p/gwt-ext/ snip GWT-Ext ... uses GWT

Re: problem about the module entry point of my application

2008-10-15 Thread Manik Chand
hi, you are extending window class, how do you manage to do that, Window has private constructor. so you can't extends it. kindly check it if it is same class as com.google.gwt.user.client.Window On Wed, Oct 15, 2008 at 2:37 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: this is the

Re: problem about the module entry point of my application

2008-10-15 Thread [EMAIL PROTECTED]
this is the detail of this exception [ERROR] Unable to load module entry point class com.gwt.client.MyApplication (see associated exception for details) com.google.gwt.core.client.JavaScriptException: (TypeError): '$wnd.Ext.StatusBar' a la valeur Null ou n'est pas un objet. number:

Re: problem about the module entry point of my application

2008-10-15 Thread Lothar Kimmeringer
[EMAIL PROTECTED] schrieb: description: '$wnd.Ext.StatusBar' a la valeur Null ou n'est pas un objet. You're using GWT-Ext but you haven't added all the Javascript- libraries of the ext-project to the web-folder of your project. GWT-Ext is implemented as simple wrappers around the

Re: problem about the module entry point of my application

2008-10-15 Thread Lothar Kimmeringer
[EMAIL PROTECTED] schrieb: i have this error:Unable to load module entry point class com.gwt.client.MyApplication (see associated exception for details) Can you explain me why i have this error and how do i resolve it? Depends on the exception being shown in the details. Regards, Lothar

Re: problem about the module entry point of my application

2008-10-15 Thread [EMAIL PROTECTED]
hi Manik, window doesn't have a private constructor.It is window class of import com.gwtext.client.widgets.Window; Manik Chand a écrit : hi, you are extending window class, how do you manage to do that, Window has private constructor. so you can't extends it. kindly check it if it is same

problem about the module entry point of my application

2008-10-15 Thread [EMAIL PROTECTED]
Hello everyone, i've built a gwt application and i've created a class for the login of user.This is the code of this class: package com.gwt.client; import com.gwtext.client.widgets.*; import com.gwtext.client.widgets.form.FieldSet; import com.gwtext.client.widgets.form.FormPanel; import