Re: Java 7

2013-04-03 Thread Max Völkel
How well does this play together with AppEngine 1.7.7? From their release notes: The Java runtime now defaults to Java7. If you still need to use the Java6 runtime, please use the --use_java6 flag when deploying your app. We encourage you to move to Java7 as soon as possible. It sounds I

Re: Java 7

2013-04-03 Thread Thomas Broyer
On Wednesday, April 3, 2013 8:15:03 AM UTC+2, Max Völkel wrote: How well does this play together with AppEngine 1.7.7? From their release notes: The Java runtime now defaults to Java7. If you still need to use the Java6 runtime, please use the --use_java6 flag when deploying your app.

Re: Get mouse position in Canvas on keyPress?

2013-04-03 Thread Jens
Missed the part that you want the mouse position in a canvas. Take a look at http://www.html5canvastutorials.com/advanced/html5-canvas-mouse-coordinates/ You could easily transfer this to GWT and on a key event use the current mouse position you have saved in your app by tracking the mouse

Re: gwtuploader dont call onFinish method

2013-04-03 Thread Manuel Carrasco Moñino
That's in a known issue, change the file name in the server side before sending back the response. On Sat, Mar 9, 2013 at 8:05 PM, Michał Zakrzewski michal.zakrzewsk...@gmail.com wrote: I think that problem is polish language in file name. Can I have change file name in uploader ? -- You

Re: clear browser cache automatically?

2013-04-03 Thread ocaner
Hi Magnus, an easy solution for this problem, without any need for a filter or changing any http cache headers is to append a query string to the .nocache.js url, e. g.: !-- using a version, you'll have to update the HTML file before a planned deployment -- script

Re: Get mouse position in Canvas on keyPress?

2013-04-03 Thread Kody
Ok but for a GWT Canvas there is no canvas.getBoundingClientRect() or similar. So this would mean I have to constantly update the mouseXY variables within @UiHandler(canvas) void onMove(MouseMoveEvent evt) { x = evt.getRelativeX()... } BUT wouldn't this add a big overhead in the long run if I

Cannot build project with Guava / Collect.gwt.xml

2013-04-03 Thread membersound
Hi, my project works at home, but I'm on a different machine and cannot build exactly the same project. It complains about the Guava Library not being on classpath. But it is, further I also have the correct entry in the project.gwt.xml: inherits name=com.google.common.collect.Collect/

Re: how to deploy a demo program created by GWT glugin for eclipse?

2013-04-03 Thread Sebastián Gurin
You just copy your GWT project's war folder to $JETTY_HOME/webapps and rename it accordingly. Also rename the copied war folder to something that identify your webapp. For example, $JETTY_HOME/webapps/gwttest1/ myGWTHtmlfile.html Then start jetty and your app should be available at

Re: Complex JSON and overlay types

2013-04-03 Thread Stefan Ollinger
You need to decode Message.class. So instead of: /AutoBeanPerson bean = AutoBeanCodex.decode(factory, Person.class, json); Do this: / / AutoBeanMessage bean = AutoBeanCodex.decode(factory, Message.class,json );/ Take a look here: https://gist.github.com/dozed/912ebc73dbeb43f3a539 Regards,

Repainting a canvas - clear or create new object?

2013-04-03 Thread membersound
Hi, when a Canvas is often cleared and redrawn (for example during a drag and drop action): would it be better to call ctx.clearRect(0, 0, clientWidth(), clientHeight())? Or just create a new Canvas by Canvas.createIfSupported() and replace the currently drawn canvas by the new one? Thanks

Changes Opacity for vertical scrollbar inside 2.4 DataGrid?

2013-04-03 Thread RAJ
Can someone please tell how to change the opacity for vertical scrollbar inside 2.4 DataGrid? Tried few things but nothing is working... 1)scrollPanel.getElement().getStyle().setOpacity(1); 2) DOM.setElementAttribute(scrollPanel.getElement(), Opacity, +1); 3)

Re: Complex JSON and overlay types

2013-04-03 Thread Patrick Tucker
Do you have the freedom to change the JSON? to something like the following: {records:[{name:Cedric,array:[50,H,US]},{name:Jean, ... }]} On Tuesday, April 2, 2013 10:24:46 AM UTC-4, sebastie...@isen-lille.fr wrote: Yes, it works. But the problem is that I don't know John. It can be

Re: Changes Opacity for vertical scrollbar inside 2.4 DataGrid?

2013-04-03 Thread Andrea Boscolo
DataGrid uses a CustomScrollPanel for its data table. Such panel uses transparent-style native scrollbars, but the resources used (NativeVerticalScrollbar.ResourcesTransparant) are hardcoded in the CustomScrollPanel constructor. I guess you can: - extend the DataGrid to obtain a reference of

Re: PROBLEM: GWT WEBAPP UNDER NETBEANS

2013-04-03 Thread mdwarne
Did you try this? https://netbeans.org/kb/docs/web/quickstart-webapps-gwt.html On Tuesday, April 2, 2013 6:49:09 AM UTC-10, akonoagou...@gmail.com wrote: Hi all, I embarked on a project with netbeans under gwt dashboarding but since then I meet a lot I problem, I use netbeans 7.0: 1) I

GWT Bar Chart X-Axis

2013-04-03 Thread reyesjos
Hello, I am working in a GWT project using Bar Chart gwt-visualization library. As a result, I have my x-axis values as integers (1,2,3) which represent the values entered in the table. Does anybody knows how to replace these x-axis labels as string? In other words, I need to map 1 - Low, 2

Re: TabLayoutPanel with scroll buttons

2013-04-03 Thread PhiLho
I updated the code of Eze for GWT 2.5. Apparently, the lastScroll trick is no longer needed, and I override the root insert / delete methods to reduce the number of overrides. There was also a little bug, using scrollLeftButton.getWidth() in place of scrollLeftButton.getHeight(), visible when

GWT Bar Chart Options

2013-04-03 Thread reyesjos
Hello, I have a GWT project using the Chart Tools API libraries gwt-visualization.jar . I created a BarChart but I am not able to find how to change the values of: - bar size - font style, size for titles,legends Does anybody knows how to do it? I'll appreciate your help on this. Thanks. -- You

Re: GWT Designer - MenuBar

2013-04-03 Thread polygraphx
Same problem here. Is there a solution?? -- 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.com. To post to this

Unable to log uncaught exceptions with RPC, SerializableThrowable not assignable to IsSerializable

2013-04-03 Thread Jason Divock
So right, the basics, this is running on GWT2.5.0 / JDK1.6 and set up more or less as the docs have it set up *gwt.xml* inherits name=com.google.gwt.logging.Logging / set-property name=gwt.logging.simpleRemoteHandler value=ENABLED / set-property name=gwt.logging.logLevel value=INFO /

How to create deep copy of list on client side?

2013-04-03 Thread membersound
Hi, how can I (if possible) best create a deep copy of an ArrayList on the client side? I just need a list that when objects are changed does not reflect the changes to the source list. How could this be done clientside? -- You received this message because you are subscribed to the Google