Re: Urgent!!!!!!!!!!!!!!!!!!!!!!!!!!! GWT 2 Memory leak

2010-07-06 Thread Daniel Le Clere
Use the new data table widget in gwt 2.1 M2 On Jul 6, 10:40 pm, metrixon wrote: > First of all: "DON'T PANIC" - the possibility of a good answer does > not correlate with the number of exclamation marks used in the subject > or text. > > Now concerning your problem: > your problem description is

Re: gwt2.0 memory leak

2010-06-17 Thread Daniel Le Clere
For some reason my last message didn't go through. I don't have time to retype the other thing, but essentially have a look at http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html#DataPresentationWidgets and gwt incubator. You want to re-implement it using a design that utilises flyweight

Re: gwt2.0 memory leak

2010-06-11 Thread Daniel Le Clere
Details? Are you using widgets? An RPC? Some sort of design pattern? Are you using innerHTML placement or are you trying to build your entire layout using javascript generated DOM objects? Are you building new DOM structures inside or outside the body of the document? Do you have a massive table of

Re: quirks vs. standard mode

2010-06-11 Thread Daniel Le Clere
> > @Ata: Try to use (note the uppercase DOCTYPE). Make > sure, that it's the very first thing in the document (no comments or > anything in front of it!) > > On Jun 10, 2:28 pm, Daniel Le Clere wrote: > > > > > Ummm... IE 6 doesn't have a standards mode

Re: quirks vs. standard mode

2010-06-10 Thread Daniel Le Clere
Ummm... IE 6 doesn't have a standards mode... Adding that doctype is probably just causing more issues. The HTML 5 doctype is useful for forcing IE 7 and 8 into standards mode. If you want to get your program rolling for IE 6 you're going to have to write some specific views under the MVC or accept

Re: Communication between two browser windows

2010-03-11 Thread Daniel Le Clere
Umm... use common local storage under HTML 5 and have a change handle on the common dataset? yay? On Mar 11, 10:29 am, Anders wrote: > Sorry, not for this one. The formpanel needs to be in a separate > browser window. So I'm basically interested in knowing how to set the > response target for a f

A code splitting curiosity

2010-01-28 Thread Daniel Le Clere
I've been playing around with code splitting and everything is setup fairly well (or at least I think so), but as far as I can tell it appears to be very subtlety misbehaving. My first test was to implement an advanced control panel with several large icons and lots of html, css and special new wid

Another reflection API post

2010-01-28 Thread Daniel Le Clere
Hey all new here. I'm just getting to know the framework after a long relationship with Dojo. I have some background and Java, but not much. For my first mini project I've made a google calendar clone. Very fun! Currently I am playing around code splitting. I had a looksy at the proforma implement