How to configure browser-specific css

2009-05-01 Thread ka1n

I'd like to include some IE specific CSS in my GWT app.  IDeferred
binding doesn't seem to support this.  I could throw some conditional
comments into my host page, but then the stylesheets specified in my
module XMLs will just override them.

Any thoughts?
--~--~-~--~~~---~--~~
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-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: How to log/audit/track GWT RPC calls?

2009-01-28 Thread ka1n

Thank you for the responses, but I'm already aware of those
techniques.  The question is how can I determine which service method
is being invoked by an RPC call?  For example, suppose I have a
service behind an interface named ISomeService and suppose the client
is calling the method ISomeService.doSomething(...).  How can I obtain
the method signature from within a ServletFilter or a descendant of
RemoteServiceServlet?

- Paul

On Jan 28, 5:34 am, doopa  wrote:
> On Jan 28, 5:34 am, hazy1  wrote:
>
> > Here are some options:
>
> > 1)  Using a servlet filter mapped to the URL pattern of your GWT
> > servlets
> > 2)  Log yourself inside of the GWT servlet
>
> I'd go for the second option as it will allow you more flexibility in
> what you log.
>
>
>
> > Matt
>
> > On Jan 27, 4:01 pm, ka1n  wrote:
>
> > > I'd like to track the usage of my GWT application.  Specifically, I'd
> > > like to be able to log the service class and method of each RPC call.
> > > I wasn't able to find anything in RemoteServiceServlet that might help
> > > me to do this.  Can anyone point me in the right direction?
--~--~-~--~~~---~--~~
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-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



How to log/audit/track GWT RPC calls?

2009-01-27 Thread ka1n

I'd like to track the usage of my GWT application.  Specifically, I'd
like to be able to log the service class and method of each RPC call.
I wasn't able to find anything in RemoteServiceServlet that might help
me to do this.  Can anyone point me in the right direction?
--~--~-~--~~~---~--~~
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-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: PopupPanel over pdf bug in Firefox

2008-12-11 Thread ka1n

I've found a workaround.  Simply use another PopupPanel to position
the iframe shim.

- Paul

On Dec 10, 3:44 pm, ka1n  wrote:
> Thanks for the reply.  Unfortunately the solution you mentioned is not
> sufficient for me because the pdf is taking up most of the screen.
> Making it invisible for a mere popup would look terrible.
>
> There is another solution and I already know how to do it without
> GWT.  A simple iframe shim does the trick.  I'm having some trouble
> positioning a shim in GWT.  The trouble is how to 'add' the shim (e.g.
> Frame) to the document.  It must be positioned the same way a
> PopupPanel is (e.g. not added to RootPanel).
>
> - Paul
>
> On Dec 9, 7:22 pm, MrEiki  wrote:
>
> > Hi, i've had the same problem with another toolkit. After some
> > research i got to the conclusion that this was due to how the browser
> > (adobe plugin) renders the pdf. Changing the z-index does not work.
> > One way to work around this is simply to let add a listener to the pdf
> > containing element, and hiding it when you open the menu.
> > For example: (not done with gwt tho)
>
> >http://nsm.raunvis.hi.is/~olympic/Trainer/train.html
>
> > Good luck, although i googled alot on this when i had this problem and
> > found no other solution.
>
> > NB: if you use flash plugin, it's not the same problem because then
> > you can control the rendering of the plugin with the wmode attribute.
> > (if i remember correctly)
>
> > best regards,
> > Eiríkur
>
> > On Dec 9, 5:29 pm, ka1n  wrote:
>
> > > I have a PopupPanel that is supposed to appear above a Frame (e.g.
> > > iframe).  It normally works, but if the iframe contains a pdf (or
> > > presumably, anything the uses a plugin...flash, java, etc) then the
> > > PopupPanel gets buried.  I can fix it in DHTML by using an iframe
> > > shim, but it is turning out to be a bit difficult in GWT because the
> > > shim must be absolutely positioned.
>
> > > How can I work around this?
--~--~-~--~~~---~--~~
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-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: PopupPanel over pdf bug in Firefox

2008-12-10 Thread ka1n

Thanks for the reply.  Unfortunately the solution you mentioned is not
sufficient for me because the pdf is taking up most of the screen.
Making it invisible for a mere popup would look terrible.

There is another solution and I already know how to do it without
GWT.  A simple iframe shim does the trick.  I'm having some trouble
positioning a shim in GWT.  The trouble is how to 'add' the shim (e.g.
Frame) to the document.  It must be positioned the same way a
PopupPanel is (e.g. not added to RootPanel).

- Paul

On Dec 9, 7:22 pm, MrEiki <[EMAIL PROTECTED]> wrote:
> Hi, i've had the same problem with another toolkit. After some
> research i got to the conclusion that this was due to how the browser
> (adobe plugin) renders the pdf. Changing the z-index does not work.
> One way to work around this is simply to let add a listener to the pdf
> containing element, and hiding it when you open the menu.
> For example: (not done with gwt tho)
>
> http://nsm.raunvis.hi.is/~olympic/Trainer/train.html
>
> Good luck, although i googled alot on this when i had this problem and
> found no other solution.
>
> NB: if you use flash plugin, it's not the same problem because then
> you can control the rendering of the plugin with the wmode attribute.
> (if i remember correctly)
>
> best regards,
> Eiríkur
>
> On Dec 9, 5:29 pm, ka1n <[EMAIL PROTECTED]> wrote:
>
> > I have a PopupPanel that is supposed to appear above a Frame (e.g.
> > iframe).  It normally works, but if the iframe contains a pdf (or
> > presumably, anything the uses a plugin...flash, java, etc) then the
> > PopupPanel gets buried.  I can fix it in DHTML by using an iframe
> > shim, but it is turning out to be a bit difficult in GWT because the
> > shim must be absolutely positioned.
>
> > How can I work around this?
--~--~-~--~~~---~--~~
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-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



PopupPanel over pdf bug in Firefox

2008-12-09 Thread ka1n

I have a PopupPanel that is supposed to appear above a Frame (e.g.
iframe).  It normally works, but if the iframe contains a pdf (or
presumably, anything the uses a plugin...flash, java, etc) then the
PopupPanel gets buried.  I can fix it in DHTML by using an iframe
shim, but it is turning out to be a bit difficult in GWT because the
shim must be absolutely positioned.

How can I work around this?

--~--~-~--~~~---~--~~
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-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---