Re: Unwanted DataGrid cell padding / indentation

2015-07-03 Thread Raymond Hawkins
Actually I can't find thing since DataGrid came out that would add styling to a div inside of it. I'd try doing a search on your whole code-base for "dataGridCell>div" to see if you're overwriting that style somewhere. Note that if you are, the override won't work that way once compiled. -- Y

Re: Unwanted DataGrid cell padding / indentation

2015-07-03 Thread Raymond Hawkins
That's very odd. I didn't look real long, but I can't find anything in GWT 2.8, 2.7, or 2.6 that would add styling for dataGridCell>div. May I ask what version of GWT you're using? On Friday, July 3, 2015 at 11:50:09 AM UTC-4, Julien wrote: > > Thank you for your answer ! > I think too that th

Re: Unwanted DataGrid cell padding / indentation

2015-07-03 Thread Julien
Thank you for your answer ! I think too that the style of the div inside td is the issue I can see that this div gets this padding from this css rule : .com-google-gwt-user-cellview-client-DataGrid-Style-dataGridCell*>div* { *padding: 2px 15px;* overflow: hidden; } which is defined in a

Re: Unwanted DataGrid cell padding / indentation

2015-07-03 Thread Raymond Hawkins
The inside the shouldn't have any padding by default. I would inspect that element and find out what css is giving it padding. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails fro

Unwanted DataGrid cell padding / indentation

2015-07-03 Thread Julien
Hi everyone, I'm creating a DataGrid and I don't understand why there is one padding too many:

Re: GSS Media Query Variables

2015-07-03 Thread Ed Bras
I think your snippet must work, if not, check if this was a bug and already solved but not yet released. I remember that some bugs are solved in 2.8, but not yet released. This might be one of them. I also notice that GSS is still bit restricted​, but it's still a bit new and I am sure they will a

Re: GSS Media Query Variables

2015-07-03 Thread Raymond Hawkins
Thanks! I posted there to try to help with the bug, if indeed there is a bug. My issue is that I want to define pixel numbers in one place and use those in my media queries. And I can't seem to get that to work. I can do: @def QUERY screen and (min-width: 600px); @media QUERY {} and that'll wo

Integrate PayPal Express Checkout Flow in a project that use GWT-RPC

2015-07-03 Thread Antonino Vitaliti
Hi! In my GWT-RPC project I've created the page that handles the basket, after I have added the PayPal Button. I have also created a sandbox account, and now I would use the PayPal express checkout, after the billing step I would skip directly on payment with paypal. I don't know how use this <

Re: GSS Media Query Variables

2015-07-03 Thread Ed
In my case it works. I just added it to the issue, have a look. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups

Re: local storage event

2015-07-03 Thread ibg3atgooogle
hi jens, thanks for your reply. all tabs are loaded from the same origin (protocol://domain:port) (only the query string is different) there is a test website (http://www.nmjenkins.com/intertab.html) where i checked if my browser (firefox 24) supports local storage. this works fine. (and also

Re: Problems Remote Debugging with SourceMaps in SuperDevMode

2015-07-03 Thread Jens
> Looking over on GitHub for existing issues, I saw that someone else > reported an issue with DNS resolution. With that in mind, I modified by > client machine's host file to include a binding for the fully qualified > name of my host machine, and when I reloaded hte page, source maps were

Re: GWT slow on IE

2015-07-03 Thread Jens
Either use CellTable / DataGrid or do not display 500 rows at once. Pagination + search/filter box is way better. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, se

Re: After upgrade to 2.7,error stack trace gone,How to get it back?

2015-07-03 Thread Jens
Its a bit difficult in GWT 2.7, see: https://groups.google.com/d/msg/google-web-toolkit-contributors/NvX4_6LdE5o/Kh_dl50b1nEJ In short, you could try https://gist.github.com/jnehlmeier/cddbc476fd330b1d4999 as UncaughtExceptionHandler. It will print uncaught exceptions to the console in a way

Re: Research on Elemental

2015-07-03 Thread Lukas Glowania
My advice: Don't use current Elemental. I tried to migrate a medium sized project to Elemental and finally gave up. 1. I still use classic Dev Mode in Chrome 34 for most of the time and page reload is really slow with Elemental. 2. It's too buggy. I got some minor problems fixed, but faced some

Re: local storage event

2015-07-03 Thread Jens
This only works if both tabs have the same origin. Otherwise the same origin policy of browsers will prevent the event for security reasons. So make sure both tabs have the same protocol:://domain:port combination. Also keep in mind that some browsers do not provide storage if private browsing