Adding Grid with margin to a LayoutPanel

2012-03-21 Thread hermis
Hey all, When I add a grid with 100% height to a layout panel and set a margin on it, the bottom margin is not honoured: *public* *void* *onModuleLoad*() { Grid grid = *new* Grid(1,1); grid.setHeight(100%); grid.getElement().getStyle().setBackgroundColor(yellow);

MapElement / AreaElement Events

2010-11-15 Thread hermis
Hello everyone, Is there any way I can handle image map click events in GWT? Thanks. -- 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,

Image Update Memory Leak

2010-11-01 Thread hermis
Hello, I have written a simple application which fills a FlexTable with a set of images. There is a timer which updates the URL of each image every second. The URL points to a Servlet which in turn generates a random PNG image on its doGet() method and writes it to the response output stream. The

Re: Window.open not working on Chrome 5 ( GWT 2.0.4 )

2010-09-01 Thread hermis
Whoops... apparently Chrome's pop-up blocker was kicking in :/ On 26 Aug, 16:08, hermis ermis.h...@gmail.com wrote: Hello all, I can't seem to get Chrome to open a new window using the Window.open() function. It seems to work fine if the function is called from a click handler

Window.open not working on Chrome 5 ( GWT 2.0.4 )

2010-08-26 Thread hermis
Hello all, I can't seem to get Chrome to open a new window using the Window.open() function. It seems to work fine if the function is called from a click handler, but not when called directly. Using Firefox and Internet Explorer the following code launches a window on load and a new window each

Re: ServiceImpl and existing java app

2009-02-16 Thread hermis
Thanks you my friend - worked a treat :) On Feb 15, 9:48 pm, jossey joss...@gmail.com wrote: I m not sure I completely understand. But can you store the instance in the servlet context and retrieve it for subsequent requests. On Feb 15, 2:29 pm, hermis ermis.h...@gmail.com wrote: Thanks

Re: ServiceImpl and existing java app

2009-02-15 Thread hermis
/Javascript library. Good luck! Later, Shaffer On Feb 14, 9:21 am, hermis ermis.h...@gmail.com wrote: Hello all, I am developing a Java application which will eventually embed a HTTP server and then act as the server for my GWT application. I need help with getting the GWT app to access

ServiceImpl and existing java app

2009-02-14 Thread hermis
Hello all, I am developing a Java application which will eventually embed a HTTP server and then act as the server for my GWT application. I need help with getting the GWT app to access a method in the Java app :) Until now, just for the sake of developing I have been instantiating my java app

Re: Adding and Image to a Panel will not working for firefox and chrome

2009-01-13 Thread hermis
Works great! Thanks Adam :) On Jan 13, 11:44 am, Adam T adam.t...@gmail.com wrote: you need to set the size of the AbsolutePanel. //Adam On 13 Jan, 02:48, tr.x ermis.h...@gmail.com wrote: Hello guys, The following code does not seem to work on FF and Chrome, however works without