gwt and css

2012-04-20 Thread gwt-newbie
Hi all, Typically, I use ids and id scoped styles for child elements of that id to control how they look when contained by that id. However, this doesn't seem to work well in gwt. There appears to be no support to set fixed ids for widgets in the ui binder other than debugId. Also does the ui:

column header problem

2011-10-19 Thread gwt-newbie
Hi How can i add a clickable icon in a column header without that after calling the column sorting? The column sorting i need too. I have tried with: - event.preventDefault(); - event.stopPropagation(); but to no avail:( Is there a workaround? Or must i wait for next GWT version? The class "Defa

Re: Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-18 Thread GWT-Newbie
cation and post the > entry point class and a minimal version of your servlet > > On 18 Nov., 13:20, GWT-Newbie wrote: > > > Yes, I'm using commons-file upload. > > > My meta tag is: > > request.getCharacterEncoding() shows "UTF-8" > &g

Re: Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-18 Thread GWT-Newbie
oding() show? > > if you use commons-file upload, you could try to manually set the > encoding > upload.setHeaderEncoding(encoding) --> to the same value you use in > your meta tag > > On 18 Nov., 10:18, GWT-Newbie wrote: > > > Thanks for your answer! > > >

Re: Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-18 Thread GWT-Newbie
l chars > are still ok > > and make sure, to use the correct method on your form > setMethod(FormPanel.METHOD_POST) > > On 13 Nov., 10:46, GWT-Newbie wrote: > > > Hey there, > > > using the FormPanel with the FileUpload widget, the strings from the > > Tex

Re: Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-17 Thread GWT-Newbie
I tried request.setCharacterEncoding(text/hmtl; UTF-8" and got the same result. -.- On 17 Nov., 10:31, GWT-Newbie wrote: > On the client side, I did "uploadForm.setEncoding > (FormPanel.ENCODING_MULTIPART);" > In the server code, I have nothing like a encoding or a chars

Re: Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-17 Thread GWT-Newbie
On the client side, I did "uploadForm.setEncoding (FormPanel.ENCODING_MULTIPART);" In the server code, I have nothing like a encoding or a charset setting. I have no idea to fix it, dan anyone help me? On 13 Nov., 16:33, Thomas Broyer wrote: > On Nov 13, 10:46 am, GWT-Newbie wro

Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-13 Thread GWT-Newbie
Hey there, using the FormPanel with the FileUpload widget, the strings from the TextBoxes and TextAreas of my FormPanel don't support some special characters and german umlauts. On the client-side everything is okay, but arriving at the server, the characters and umlauts (like ä ü ö) were replaced

Re: cannot debug in eclipse :(

2009-06-15 Thread gwt-newbie
Firstly, yes, it sounds related, although at a first-cousin level rather than a sibling bug. Secondly, boy GWT debugging is fragile!! The guide really needs to emphasize that, although not in those exact words. Please consider that: (a) I spent an entire day wondering what I might have been doing

Re: cannot debug in eclipse :(

2009-06-15 Thread gwt-newbie
Firstly, yes, it sounds related, although at a first-cousin level rather than a sibling bug. Secondly, boy GWT debugging is fragile!! The guide really needs to emphasize that, although not in those exact words. Please consider that: (a) I spent an entire day wondering what I might have been doing

cannot debug in eclipse :(

2009-06-15 Thread gwt-newbie
Vista 64-bit JRE 1.7 (also tried JRE 1.6 and 1.5) Installed Eclipse 3.4 Ganymede for Java Development (also tried 3.4 Ganymede for Java EE dev; and 3.5 Galileo for Java EE) Installed GWT and AppEngine Eclipse Plugins from inside Eclipse from the Google Update Site for Eclipse 3.4 Created New Proj

Re: GWT javascript structure

2008-12-07 Thread GWT Newbie
trol, but it is more common to see > options #2 and #3 in use.  All in all, you need to choose the right > option for your environment.  And during deployment it is useful to > use FireBug for debugging. > > Robhttp://roberthanson.org > > On Sun, Dec 7, 2008 at 6:00 AM, GWT Newbie <[EM

GWT javascript structure

2008-12-07 Thread GWT Newbie
Hello, I was wondering if it is possible to configure the structure of the files generated by gwt. In detail, assume that I have a project HelloWorld. GWT will generate something like: com.mypackage.gwt.HelloWorld |--> some files .rpc |--> some files .png |--> some files .html |--> some

Re: How to configure GWT in existing application

2008-12-04 Thread GWT Newbie
: com.google.gwt.dom.client.Document doc = RootPanel.getBodyElement ().getOwnerDocument(); Element el = doc.getElementById(div_id); Object obj = el.getAttribute("value"); On 3 déc, 16:04, GWT Newbie <[EMAIL PROTECTED]> wrote: > Yes. Looks like that. > > I will read it

Re: How to configure GWT in existing application

2008-12-03 Thread GWT Newbie
Yes. Looks like that. I will read it more carefully this night. Thanks. On 3 déc, 14:10, gregor <[EMAIL PROTECTED]> wrote: > You mean this sort of thing? > > http://groups.google.com/group/Google-Web-Toolkit/browse_thread/threa... > --~--~-~--~~~---~--~~ You rec

Re: How to configure GWT in existing application

2008-12-03 Thread GWT Newbie
First of all, thanks for taking time answering :-) On 3 déc, 11:51, gregor <[EMAIL PROTECTED]> wrote: > I'm pretty sure you can't do this: > > The differents manip. I did, lead me to the same conclusion. And I think this is not the right way to do the integration. > I think what you need to do

Re: How to configure GWT in existing application

2008-12-03 Thread GWT Newbie
Hello, I am attempting to do a similar integration. I explain what I try to do here : http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/173602a0c87bfc02 Can you be of any help ? Thanks Hieu On 2 déc, 20:18, gregor <[EMAIL PROTECTED]> wrote: > Hi Arul, > > What are you att

Direct call a RemoteServiceServlet

2008-12-02 Thread GWT Newbie
Hello, I have my application already done and running (servlet, jsp, spring, ...). I would like to add gwt in the front end because of its nice components (tree and grid for instance). I've done the differents tutorials with gwt alone and all is working fine. Now I want to go further : integrate