Re: g:HTMLPanel size

2011-12-15 Thread Sébastien Tromp
Can't you simply define your body element in your CSS? E.g. body { background-image: something; font-family: Arial; width: 100%; height: 100%; } On Fri, Dec 9, 2011 at 11:03 PM, Christopher Piggott cpigg...@gmail.comwrote: What I came up with was this:

Re: GWT module 'gwtclient' may need to be (re)compiled

2011-09-20 Thread Sébastien Tromp
Do you use Google Plugin for Eclipse? I sometimes come across this message, and simply doing a GWT compile fixes the problem. Regards, -- Sébastien Tromp On Tue, Sep 20, 2011 at 1:32 AM, Laura Bickle bickle.la...@gmail.com wrote: My app works in development mode, so it was time to run

Let the user manually resize widgets

2011-09-12 Thread Sébastien Tromp
to be an AbsolutePanel, while I am using a LayoutPanel. Would you know how I could achieve a similar effect? Regards, -- Sébastien Tromp -- 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-toolkit

Re: How to add hover on CellList

2011-08-04 Thread Sébastien Tromp
You may take a look here too: https://groups.google.com/d/topic/google-web-toolkit/kXLuKRN6Co0/discussion -- Sébastien Tromp 2011/8/3 Jeff Larsen larse...@gmail.com sink the mouseover event on your cell and add a handler for mouseover and open up a popup panel with the required functionality

Re: Adding a MouseOverHandler to CellList

2011-08-03 Thread Sébastien Tromp
Thanks, that's what I was looking for. Sorry to have overlooked that. For information, I used this and the code snippet from therehttp://stackoverflow.com/questions/4699232/mouseover-of-flextable-with-gwt to build a custom popup, and hide it on mouseout. -- Sébastien Tromp 2011/8/3 Y2i yur

Collection that notifies listeners of a change

2011-08-03 Thread Sébastien Tromp
) { logger.info(on collection change) } })); ... fightRequests.add(someobject); After the add, I would expect my handler to be called, but to no avail. Would you have any idea as to what I'm doing wrong? Thanks, -- Sébastien Tromp -- You received

Re: Collection that notifies listeners of a change

2011-08-03 Thread Sébastien Tromp
After debugging, I think I found the solution to my issue. It had to do with parameterized types, which would break the event flow. Simply extending all classes to remove all parameterized elements did the trick. -- Sébastien Tromp 2011/8/3 Sébastien Tromp sebastien.tr...@gmail.com Hello, I

Adding a MouseOverHandler to CellList

2011-08-02 Thread Sébastien Tromp
to no result either. Would anyone have an idea as to how to do this? -- Sébastien Tromp -- 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-toolkit@googlegroups.com. To unsubscribe from this group

Re: Adding a MouseOverHandler to CellList

2011-08-02 Thread Sébastien Tromp
More precisely, I need to add a tooltip to the Cell (not necessarily the MouseOverHandler). 2011/8/2 Sébastien Tromp sebastien.tr...@gmail.com Hello, I am trying to adapt the example at http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList to create a custom list based

Re: Tested class changes not visible to test class using gwt-maven-plugin

2011-07-30 Thread Sébastien Tromp
and can easily live with this), but if you find something I'd be glad to know :) Cheers, -- Sébastien Tromp 2011/7/29 cri chuck.irvine...@gmail.com I like your workaround a little better than mine. It does result in a non project relative directory path in my .classpath file. We check

Re: Tested class changes not visible to test class using gwt-maven-plugin

2011-07-29 Thread Sébastien Tromp
. This way it works for all test cases - but still not a great workaround. -- Sébastien Tromp 2011/7/29 cri chuck.irvine...@gmail.com Can anyone help with this? (I know there is a separate mailing list for gwt-maven-plugin but I'm not sure it has a lot of subscribers.) Given that you have a JUnit

Re: Applying CSS to Grid

2011-07-28 Thread Sébastien Tromp
. Thanks for your help, at least for now I can do what I wanted to :) -- Sébastien Tromp 2011/7/28 Andrei vol...@spiraluniverseinc.com Try .leaderboard td:first-child { font-size: xx-large; font-weight: bold; } This should do the trick - you don't need to set a headerRow style to the first

Applying CSS to Grid

2011-07-27 Thread Sébastien Tromp
, -- Sébastien Tromp -- 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-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more

Which version of javax.validation.validation-api?

2011-07-12 Thread Sébastien Tromp
Hello, I am currently trying to integrate the gwt-validation framework ( http://code.google.com/p/gwt-validation) in my application. While debugging through javax.validation.Validation.byDefaultProvider(), I see something puzzling: the line highlighted by the debugger (line 125) does not

Re: Which version of javax.validation.validation-api?

2011-07-12 Thread Sébastien Tromp
I forgot to specify that this desynchronization happens only the on the client side of GWT. On the server side, it looks like the proper version of validation-api is used. -- seb 2011/7/12 Sébastien Tromp sebastien.tr...@gmail.com Hello, I am currently trying to integrate the gwt-validation

Re: Which version of javax.validation.validation-api?

2011-07-12 Thread Sébastien Tromp
Thanks for the pointer. I'll just wait for 2.4 to implement a proper validation mechanism then. Thanks :) -- seb 2011/7/12 Nick Chalko ncha...@google.com GWT 2.4 beta include support for built in Validation take a look at http://code.google.com/p/google-web-toolkit/wiki/BeanValidation --