Re: GWT Timer doesn't work

2012-02-25 Thread Peter D.
Has a solution been found to this issue? I have encountered the same thing, with no luck. On Jan 19, 2:24 am, Hanna Varakhobava h.varakhob...@gmail.com wrote: Hey, somebody... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Timer AsyncCallback issue

2012-02-25 Thread Peter D.
I have a timer set up to update an element on my UI periodically from a buffer. If the buffer grows too small, I make an RPC call which returns the next chunk of frames. However, I want the timer to continue updating the UI off the existing buffer while the RPC call is working. It seems that

Re: Error installing Google Plugin on Galileo

2009-09-28 Thread Peter D.
I am getting this problem as well. Any updates being pulled return the same error. I cannot update eclipse. And I cannot install the m2eclipse plugin. On Sep 28, 10:22 am, Jason Parekh jasonpar...@gmail.com wrote: Hmm, I wonder if this is related to the release of Galileo SR1, which was on

Re: Response from Server is very slow

2008-11-05 Thread Peter D.
It is most likely the serialization and de-serialization that is taking the most time. There really isn't anything you can do about this because it's the way XML-RPC works. It converts all your objects into a really big string (xml) sends it over to the clients which then re-instantiates the

Getting the alignment of a cell from a FlexTable.

2008-10-20 Thread Peter D.
Looking at the docs for FlexTable it seems that it is not possible to to see if any type of alignment has been set on a certain cell. Does anyone know if this is possible. Here is my problem: I'm using gwt-dnd and on a table it is possible to re-order a list. 2 of the 3 cells in this table are

Re: Drag and drop support

2008-10-16 Thread Peter D.
gwt-dnd is actually very good. It's a little complicated to get used to but anything is possible with this. http://code.google.com/p/gwt-dnd/ On Oct 16, 7:24 am, Filip Krygowski [EMAIL PROTECTED] wrote: Hi! I'm a student and I'm writing a report on GWT. I wanted to describe the situation of

Re: switching from @gwt.resource to [EMAIL PROTECTED] makes it stop working

2008-10-01 Thread Peter D.
The actual syntax is: @Resource(com/company/client/control/icons/up.gif) public AbstractImagePrototype upIcon(); There is no need to preceed the annotation name with ImageBundle and java annotations cannot be placed within comments. On Oct 1, 12:39 pm, benw [EMAIL PROTECTED]

Re: Delaying a loop.

2008-09-30 Thread Peter D.
This makes a lot of sense thank you. But I am still unsure about how to create a delay. If I were to create a command with a Timer in it would it cause a delay in calling the next command in the queue? On Sep 30, 8:33 am, Thomas Broyer [EMAIL PROTECTED] wrote: On 29 sep, 17:49, Peter D. [EMAIL