Re: Multiple DialogBoxes, bringing one to the front of others - a conundrum.

2011-11-24 Thread geert3
use a CSS class e.g "active" that has a higher z-index. Only the clicked window shall have that class, causing it pop up in front the others. (basically your approach 1). popup menus etc need to have a fixed z-index higher than the active window. i don't see further problems with that? -- You r

Re: Using how do I customize my splitLayoutPanel slider bars with buttons?

2011-09-15 Thread geert3
afaik the slider bar is not customizable so you either have to draw everything yourselves, or add your buttons somewhere else. You may be able to place div's on top of the scrollbar but it will be ugly and likely not cross-browser compatible. Drawing the scrollbar yourselves is a lot of work but

GWT RepeatingCommand not repeating due to FireBug console ?!?

2011-09-13 Thread geert3
Hi, This was hard to pinpoint, so I thought I post a message in case anyone else hits it. Situation: I have a RepeatingCommand launched via a Scheduler.get().scheduleIncremental. It runs fine the first time, clearly returns true (indicating it wants to be rescheduled), yet the command isn't bei

Re: Error while compiling gwt module ?.

2011-08-23 Thread geert3
Those errors aren't fatal. I know they look scary but as long as the compile doesn't abort, you may just as well see them as warnings or plain ignore them. They're caused by code that is eventually pruned as dead code, and as a result it doesn't prevent the compile from succeeding. -- You rece

Re: GWT Date 'week of year' and 'day of week' problem

2011-08-23 Thread geert3
There are some 3rd party Calendar replacements out there, search GWT Calendar Class. i tried one and it worked, but had massive performance hit on first use. Maybe today others are better but I managed to do without anyway. Perhaps silly but could you make a server call and let the server do it?

Re: unable to set name attribute for TextBox

2011-08-23 Thread geert3
i know you must be careful with setAttribute (for cross browser compatibility). Have you tried setPropertyXXX? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/googl

Re: Image onLoad doesn't fire in production

2011-08-23 Thread geert3
Just an idea, could it be your prefetch is already finished by the time you are registering the onload handler? So you would have missed the event. Try putting the addLoadHandler before the image.prefetch. cheers Geert -- You received this message because you are subscribed to the Google Groups

Re: How do I get html data to show in an panel when I click an item in my listbox?

2011-08-23 Thread geert3
this is quite basic stuff. Be sure to check out the GWT tutorial. from the top of my head it would look something like this: private SplitLayoutPanel slp = ... private Panel contentPanel = new FlowPanel(); private ListBox lb = ... ... slp.addNorth(contentPanel); lb.addClickHandler(new ClickHandl

Re: Insane RPC Serialization Error.

2011-08-23 Thread geert3
I had a similar unexplicable problem that went away after upgrading to 2.3 - worth a shot perhaps -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit

Re: Jetty Server can't locate my native JNI library?

2009-07-08 Thread geert3
My bad. Turned out that the modifications to the C source weren't recompiled with proper MINGW options, so the symbols weren't visible. On 8 jul, 13:00, geert3 wrote: > Hi, > I'm migrating a proof of concept project from JSF to GWT, so far it > rocks. > Part of t

Jetty Server can't locate my native JNI library?

2009-07-08 Thread geert3
Hi, I'm migrated a proof of concept project from JSF to GWT, so far it rocks. Part of the deal is a native library (written in C, linked to Java using JNI). The resulting DLL is placed in C:\Program Files\Java\jdk1.6.0_11\jre \bin In the JSF project this worked fine. In GWT it doesn't. I tried mov