Re: Development Mode will not be supported in Firefox 27+

2014-02-20 Thread mtr
Couldn't agree more... debugging the client-side GWT code in the IDE debugger (Eclipse in my case) is base of my every day work :( On Wednesday, February 19, 2014 5:37:01 PM UTC+1, Jeff Evans wrote: Can someone clarify what is meant by fully functional for Super dev mode? In my view,

How to add MouseOverEvent for a node in CellTree

2014-02-20 Thread Smiley
Hi, I want to show the button on the MouseOverEvent of a node or cell in CellTree. Can someone give my some examples on how this can be achieved? Should i change my implementation from CellTree to Tree to achieve the same? Do let me know your inputs on this. Thanks -- You received this

Re: Development Mode will not be supported in Firefox 27+

2014-02-20 Thread Thomas Broyer
On Thursday, February 20, 2014 9:49:42 AM UTC+1, m...@touk.pl wrote: Couldn't agree more... debugging the client-side GWT code in the IDE debugger (Eclipse in my case) is base of my every day work :( I'm sure the SDBG devs would love to hear your feedback ;-) https://github.com/sdbg/sdbg

Re: How to add MouseOverEvent for a node in CellTree

2014-02-20 Thread Thomas Broyer
If by button you mean the open/close image, then you should be able to do it by just tweaking the CSS: interface MyCellTreeResources extends CellTree.Resources { @Source({ CellTree.Style.DEFAULT_CSS, mytweaks.css }) MyCellTreeStyle cellTreeStyle(); } interface MyCellTreeStyle extends

Re: Out of stack space

2014-02-20 Thread raindy . ye
I just got a similar error. I use rpc to get the login user to initial the home page, it it fine if I use IE 32bit browser to open the application but error cause if I use IE 64bit browser. The error message is po-pu inside the rpc callback onFailure method, and the detail error message is :

Re: SuperDevMode on/off bookmarklets aren't compatible with frames

2014-02-20 Thread Davide Cavestro
The problem was that I didn't adapted the script portion that saves the __gwt_bookmarklet_params variable (it should work on the frame window). So since in my case the frame was called 'sheet', at the end for me it was enough adapting it this way javascript:%7B var sheetFrame %3D

Re: GWT Wrapper for Twitter Bootstrap v3!

2014-02-20 Thread Leung
I start developing from the simple basic gwt. And so far, I can do it without UiBinder. I have to re-do a lot of work, if I modify it. Is that deserve? On Tuesday, February 18, 2014 3:43 AM, Joshua Godi joshuag...@gmail.com wrote: Just have to use the setters that are there for

Re: CssResource inheritance and avoiding rule repetition on injection, possibility of an @Require?

2014-02-20 Thread Thomas Broyer
On Thursday, February 20, 2014 12:08:28 AM UTC+1, GWTter wrote: On Wednesday, February 19, 2014 10:59:51 AM UTC+1, Thomas Broyer wrote: On Tuesday, February 18, 2014 6:38:36 PM UTC+1, GWTter wrote: Hi all, Let me just go with an example right off the bat. Let's say I have the

sibling CSS selector ~ workaround?

2014-02-20 Thread Ed
What is an elegant workaround for the CSS ~ selector? Do I really need to inject it myself like done herehttp://stackoverflow.com/questions/8764010/how-to-make-the-css-selector-work-in-gwt-css-resource . Why is it actually not supported as his little brother + is supported? When using the ~

Re: gwt compilation issue

2014-02-20 Thread Thomas Broyer
GWT proper doesn't create WEB-INF or anything inside it. WEB-INF is for server-side Java code, and it's your IDE or your build tool's responsibility to put it there (or possibly yourself, for WEB-INF/lib, if you manually manage your dependencies). So in this case I'd say have a look at your IDE

Re: sibling CSS selector ~ workaround?

2014-02-20 Thread Thomas Broyer
On Thursday, February 20, 2014 1:16:42 PM UTC+1, Ed wrote: What is an elegant workaround for the CSS ~ selector? Do I really need to inject it myself like done herehttp://stackoverflow.com/questions/8764010/how-to-make-the-css-selector-work-in-gwt-css-resource . Why is it actually not

IE9 after GWT update (2.6.0): blue frame around image achors?

2014-02-20 Thread Magnus
Hello, after upgrading to the newest GWT version and deploying my app I noticed that the appearance of my image anchors (images as/inside anchors) has changed: There is a blue frame around them:

Re: IE9 after GWT update (2.6.0): blue frame around image achors?

2014-02-20 Thread Jens
Some browsers do this by default for any img tag inside an a tag. You have to explicitly set the border to none for the img tag. -- 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

Re: Laying out a LayoutPanel

2014-02-20 Thread Vassilis Virvilis
I would use a HeaderPanel. HeaderPanel provides header and footer that are __natively__ (naturally) sized by the browser. So here it goes empty div for the header div/ a table style div for the middle (resizable widget) div style=width: 100%; height: 100%; display: table div style=width:

Re: Development Mode will not be supported in Firefox 27+

2014-02-20 Thread mtr
On Thursday, February 20, 2014 11:57:30 AM UTC+1, Thomas Broyer wrote: I'm sure the SDBG devs would love to hear your feedback ;-) https://github.com/sdbg/sdbghttps://www.google.com/url?q=https%3A%2F%2Fgithub.com%2Fsdbg%2Fsdbgsa=Dsntz=1usg=AFQjCNGpKQKj0nzlbD9UjM3ciaeAEJAb9g SDBG has a

Re: sibling CSS selector ~ workaround?

2014-02-20 Thread Ed Bras
...because it uses the Flute CSS parser, that only supports CSS 2 syntax. Have a look at gss.gwt if you want to use CSS 3: https://github.com/jDramaix/gss.gwt @Thomas, thanks, just give it a try, after temporarily removing all @def, @eval, @if statements, It will run, but it will not inject

Re: Using Cells for 2D representation

2014-02-20 Thread Jambi
This seems to do the trick for me! Thanks Am Donnerstag, 20. Februar 2014 00:42:53 UTC+1 schrieb Jens: Give your CellList a width of 100% and your cells a fixed width along with display:inline-block. Doing so using the GWT showcase results in:

Re: How to add MouseOverEvent for a node in CellTree

2014-02-20 Thread Smiley
Thanks for your response.Sorry I was not clear as this was my initial post. *Requirement:* There will be list of Server which will form the root nodes of the CellTree. Its child node will be list of Processes that is running on the Server. Eg Tree: Server1 Process1 ---Process2

Re: sibling CSS selector ~ workaround?

2014-02-20 Thread Ed
In the mean time added a listener to add an additional style. Kind of frustration how such a single css symbol can costs you hours. it's like somebody hitting the break ;) Hope CSS3 will be supported soon, or GSS will be improved. -- You received this message because you are subscribed to the

gwt 2.5 : Dnd native Android 4 (Chrome or Firefox)

2014-02-20 Thread pp
Hello, Why drag and drop on touch Android doesn't work ??? I use this : flexTable.addDragStartHandler(new DragStartHandler() { @Override public void onDragStart(DragStartEvent event) { -- I don't want use gwt-dnd api but native... what is the solution ? -- You received this message because

SplitLayoutPanel particulars

2014-02-20 Thread Blake McBride
Greetings, As sort of a pseudo continuation of my last email, I switched to a SplitLayoutPanel. That gave me everything I was looking for and a movable partition to boot. I do experience two new problems that I haven't found a solution for. I really appreciate the help. The two problems I am

Re: [Help] GWT + GAE + Android - Where to start?

2014-02-20 Thread Bruno Brito
Hello everybody, I've been making a lot of progress in my project, however, once again I faced many problems. When I chose to use GWT, I didn't think that I would have so much trouble facing Javascript codes. Just to be clear, I'm using Google Cloud Endpoints APIs + GWT, and as you know,

Re: CssResource inheritance and avoiding rule repetition on injection, possibility of an @Require?

2014-02-20 Thread GWTter
Before anything, sorry Thomas, I think I may have just replied to you instead of just the topic (buttons bugged on me a bit), no-spam intended You're right I guess I did misunderstand if the imported with prefix doesn't in fact use a different obfuscation for the original selectors in

Re: Running Hupa in Development Mode

2014-02-20 Thread Manuel Carrasco Moñino
I have compiled that version without problem. Anyway we are developing a new version of hupa which a lot of changes, try to check out last stuff from github and compile it https://github.com/manolo/james-hupa - Manolo On Wed, Feb 19, 2014 at 5:15 AM, Harry Lin linch0...@gmail.com wrote:

Trouble with forceLayout

2014-02-20 Thread Blake McBride
Greetings, I think over the last year I have spent a good two to three solid weeks messing with forceLayout(). I just can't seem to get it straight, and then, when I think I do, it only works for some browsers and works differently on others. The specific problem I have now involves a structure

Re: gwt-log servlet configuration parameter 'symbolMaps

2014-02-20 Thread confile
Did you solve the problem? I have the same. Am Dienstag, 5. März 2013 16:24:41 UTC+1 schrieb Alexis Thésée: Hello, i wan't to use gwt-log in my application, because i can have the client log on the server. I have followed that page to use it

Re: CssResource inheritance and avoiding rule repetition on injection, possibility of an @Require?

2014-02-20 Thread Jens
If you write a widget and that widget uses a button and that button has a default style defined in a BaseCssResource then you should use that BaseCssResource directly in your widget. You should not make your WidgetCssResource extend the BaseCssResource. Why? Because as soon as you do so, all

Re: Trouble with forceLayout

2014-02-20 Thread Blake McBride
I found a solution that may point to the problem. The following works: Scheduler.get().scheduleDeferred(new Command() { public void execute () { RootLayoutPanel.get().forceLayout(); } Previously, I was doing the

Re: Laying out a LayoutPanel

2014-02-20 Thread Blake McBride
Since I couldn't get SplitLayoutPanel to work as I wanted, I used your suggestion. Works like champ. Thanks! On Wed, Feb 19, 2014 at 6:03 PM, Jens jens.nehlme...@gmail.com wrote: Use setWidgetTopBottom() for the upper layers: LayoutPanel layout = new LayoutPanel();

Re: Running Hupa in Development Mode

2014-02-20 Thread Harry Lin
I'm working on the trunk :) By the way, I got a error with the the version i used and this trunk. In Hupa.gwt.xml file With module rename-to='hupa' tag it says : The content of element type module must match (inherits|source|public|super-source|entry-point|

Angular JS with GWT

2014-02-20 Thread tarish
Hi Guys, Will it be good idea to integrate Angular js with GWT. The idea is to use features of both GWT and angular js, has anyone done it yet??? please let me know Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Re: [gwt-contrib] Re: final fields patch

2014-02-20 Thread Stephen Haberman
Hi Jens, If thats the case you might break people who have final fields whose types are not compatible to GWT-RPC serialization. If this is happening today, and this fix started serializing EnumSet where before it was not, I would again assert the new behavior is the correct behavior, so the

Re: [gwt-contrib] Re: final fields patch

2014-02-20 Thread Jens
Sure, I totally agree. The example just jumped into my head and if it can really cause app breakage then the release notes should communicate it more prominent. In general I would like to see final fields serialized because it will greatly reduce the need of writing/generating