Re: FlexTable RowSpan problem

2011-08-17 Thread Ivan Pulleyn
... On Wed, Aug 17, 2011 at 2:11 PM, Paul Robinson wrote: > > On 16/08/11 21:47, Ivan Pulleyn wrote: > >> >> I've recently experienced similar bugs in FlexTable and had to work around >> it by next my tables and never using colSpan. I'm curious if GW

Re: FlexTable RowSpan problem

2011-08-16 Thread Ivan Pulleyn
Hi, I've recently experienced similar bugs in FlexTable and had to work around it by next my tables and never using colSpan. I'm curious if GWT 2.4 will fix this but I haven't had the chance to look into it. Ivan... On Tue, Aug 16, 2011 at 1:37 PM, md wrote: > Hi! > > I'm developing an applica

Re: Obtaining the click position of the underlying widget from an overlay widget

2011-08-16 Thread Ivan Pulleyn
I believe you want this: int x = event.getRelativeX(event.getRelativeElement()); int y = event.getRelativeY(event.getRelativeElement()); On Tue, Aug 16, 2011 at 7:26 PM, Alexander Orlov wrote: > I have something like > > > > > > > The FocusPanel is attached to a random place within the

Re: debugging javascript call.?

2011-08-16 Thread Ivan Pulleyn
Then you should check that $wnd.codeAddress exists and is a function On Tue, Aug 16, 2011 at 2:37 PM, Navindian wrote: > before call:sanfrancisco is showing up in this alert. But it is not calling > javascript function. > > > On Tue, Aug 16, 2011 at 12:54 PM, Ivan Pulleyn wrot

Re: debugging javascript call.?

2011-08-16 Thread Ivan Pulleyn
address parameter is likely null is this case On Tue, Aug 16, 2011 at 1:35 PM, Navindian wrote: > Hi >> native void showGeoAddress(String address) /*-{ >> >> alert('before call:'+address); >> $wnd.codeAddress(address); >> alert('not reaching this'); >>} >> I am trying to call javascript

Re: Embed pdf into gwt app

2011-08-15 Thread Ivan Pulleyn
Depending on your requirements, you may find the pdfjs project useful: http://andreasgal.github.com/pdf.js/ Ivan... On Tue, Aug 16, 2011 at 5:38 AM, karim duran wrote: > Hi Papick, > > In my opinion, the problem is not about your iframe or any GWT container. > Concerning or , i think you shou

Re: Why this code can't get the event??

2011-08-12 Thread Ivan Pulleyn
I notice that you are removing the widget from it's parent. That doesn't seem correct. On Fri, Aug 12, 2011 at 12:55 PM, yourenzhuce wrote: > I want to add a div on TextBox, when textbox's value is empty, the div > will be show. > It look good, but it can't receive the event. the EventHandler do

Re: Cannot deserialized ArrayList object in GWT 2.3

2011-08-09 Thread Ivan Pulleyn
Is you object a plain-old Java object? Are you using any persistence engine on the server like Hibernate? Sometimes that can cause serialization issues, especially when something like Javassist manipulates byte code on the server. Ivan... On Wed, Aug 10, 2011 at 3:35 AM, BM wrote: > I am gettin

Re: why does DockLayoutPanel care about the order of its elements?

2011-08-09 Thread Ivan Pulleyn
DockLayoutPanel assumes that "center" is all the space that wasn't taken up by a component that was added to the north, east, etc. There's a built in assumption that when you call add() you have finished adding any components that will be docked to an edge. Ivan... On Wed, Aug 10, 2011 at 3:09 AM