hi good to see you I'm wanna be join gwt comm~

2013-10-17 Thread 허주영
hi my name is joo-young, hur, from s.korea. so i'm beginning gwt . i was proceed project at struts2, ibatis, sql, etc java. but recently i'm very hard. because gwt is not spreading tech in my town. so i'll very study hard , because i'm si computer engineer, and i like gwt's function. and i'm

Using JsonpRequestBuilder to download a file hosted on a different domain using a ftp link

2013-10-17 Thread Fanny Wong
Hi everyone, I just started using GWT a couple days ago, and currently trying to download an Excel file from a different domain onto the GWT servers and then parse it later on. I seen suggestions on doing it through Request builder and RPCs but so far haven't gotten any of them to work. Also I

Re: How to use different CSS/Code for different browsers/devices/os?

2013-10-17 Thread Ed
Will CSS @media queries be supported in the next 2.6 release? -- 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

CSS @Media queries work arounds?

2013-10-17 Thread Ed
Currently CSS @media queries aren't supported yet in GWT. What are good work arounds? My list: 1) The css files that contains the @media queries is included a TextResource in your ClientBundle and injected through StyleInjector.inject(). 2) The css file doesn't contain @media queries is

Re: GWT and GSAP (Green Sock Animation Platform) ?

2013-10-17 Thread Blaze
What is the benefit of using it for this king of animations, all can be done very easy even with css... I tought you are using it more for gaming animation or stuff like this... I used it for small multiple picture animation, with a jsni calles going forth and back from gwt to native js where I

Re: GWT and GSAP (Green Sock Animation Platform) ?

2013-10-17 Thread Ed Bras
@Blaze: I use both, depending on the requirements. Simple - Css, more complex - GSAP. But don't forget that on Mobile, GSAP out performs CSS also with the easy animations... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Re: UI Binder why?

2013-10-17 Thread Thomas Broyer
On Wednesday, October 16, 2013 8:53:36 PM UTC+2, Timothy Spear wrote: How would the declarative UiBinder jeopardize browser independence? I think he's talking about HTMLPanel actually, which is independent from UiBinder, but which UiBinder makes it so much easier to use. BTW, I don't think

Re: CSS @Media queries work arounds?

2013-10-17 Thread Jens
The ClientBundle mechanism is pluggable so I would try introducing a new Resource type MediaQueryAwareCssResource extends CssResource and try to figure out how well I could reuse the CssResourceGenerator that is responsible for generating the code for normal CssResources. The

Re: CSS @Media queries work arounds?

2013-10-17 Thread Ed Bras
@Jens: but how do you select the correct MediaQueryAwareCssResource, and what about switching MediaQueryAwareCssResource when the screen is resized? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Re: CSS @Media queries work arounds?

2013-10-17 Thread Jens
@Jens: but how do you select the correct MediaQueryAwareCssResource, and what about switching MediaQueryAwareCssResource when the screen is resized? Ok then a bit more: interface MediaQuery { int getWidth(); String getSource(); } enum AppMediaQuery implements MediaQuery {

Re: Using JsonpRequestBuilder to download a file hosted on a different domain using a ftp link

2013-10-17 Thread Thomas Broyer
Answered on SO: http://stackoverflow.com/a/19427197/116472 On Thursday, October 17, 2013 8:46:43 AM UTC+2, Fanny Wong wrote: Hi everyone, I just started using GWT a couple days ago, and currently trying to download an Excel file from a different domain onto the GWT servers and then parse it

Re: CSS @Media queries work arounds?

2013-10-17 Thread Ed Bras
I think I currently go for option (4), and I think it will make it easier to upgrade to media queries once supported by GWT -- 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,

On extension strategies for GWT applications

2013-10-17 Thread Davide Cavestro
I have to support the deployment of additional modules in order to dynamically extend my employer's GWT application, adding new features or customizing the existing ones. I mean *something like a plugin system which dynamically loads and executes new code deployed at any point of time*. The

CHART RENDERING PROBLEMS

2013-10-17 Thread Fabio Simon
Hi I can't get my chart fit exactly the div it is contained in. I would like a thing like this https://developers.google.com/chart/interactive/docs/gallery if you look over the html code and css with the ElementInspector you will notice the chart fits completely. Infact I can not remove in my

GWT + Postgres not working when deployed

2013-10-17 Thread Sean
I have a project that talks to Postgres on the server side. I have the JDBC jar in the WEB-INF/lib folder. When I run it on my machine it works fine. But when I deploy it to a TOMCAT instance I get: java.sql.SQLException: No suitable driver found for jdbc:postgresql://localhost/grp91-in-out at

Re: GWT + Postgres not working when deployed

2013-10-17 Thread GWTter
Sounds like your postgresjdbc is not on the classpath when building the war. Have you made sure that it would be included in the classpath in the build.xml? On Thursday, October 17, 2013 5:20:01 PM UTC+2, Sean wrote: I have a project that talks to Postgres on the server side. I have the

Re: hi good to see you I'm wanna be join gwt comm~

2013-10-17 Thread Wesley.JUNG
Hi, Mr. Hur, This is the example of using textbox in GWT. //com.google.gwt.user.client.ui.TextBox TextBox tbox = new TextBox(); // setting text color tbox.getElement().getStyle().setColor(#FF); // getting text color String color = tbox.getElement().getStyle().getColor(); Thanks, by the

Re: GWT + Postgres not working when deployed

2013-10-17 Thread Natanael Maldonado
Could you show us how are you loading your driver in memory? El 17/10/2013 10:20, Sean slough...@gmail.com escribió: I have a project that talks to Postgres on the server side. I have the JDBC jar in the WEB-INF/lib folder. When I run it on my machine it works fine. But when I deploy it to a

RequestFactory issue with return operation processing if entities referenced in collection are processed after the collection they appear in is processed

2013-10-17 Thread GWTter
Hi all, I'm pretty sure this is RF issue but thought I'd post here first just in case. This involves the case where you update a an entity with a collection in which another entity is being persisted. When the response returns from the server and the operation messages are processed the

Re: GWT + Postgres not working when deployed

2013-10-17 Thread Sean
The .jar is on my build path. I've double checked that. Currently I'm loading the driver like this: conn=DriverManager.getConnection(url,user, pw); where the url is String url = jdbc:postgresql://+host+/+dbName; It works from dev mode, for some reason once deployed it doesn't. I'm trying to

Re: GWT + Postgres not working when deployed

2013-10-17 Thread Sean
Ok, http://tomcat.apache.org/tomcat-7.0-doc/jndi-datasource-examples-howto.html#PostgreSQL worked, but you have to add the Resource to the projects Web.xml and not TOMCAT's web.xml. Man, that was a pain in the ass. Thanks for the suggestions guys! On Thursday, October 17, 2013 12:16:11 PM

How to use EventBus for non-Presenter class in GWTP?

2013-10-17 Thread Tom
I am using GWTP platform eClipse to build webapp. In Eclipse, when creating a Presenter, it will create 3 files (ex: SearchPresenter.java, SearchView.java, SearchView.ui.xml): public class SearchView extends ViewImpl implements SearchPresenter.MyView public class SearchPresenter extends

Re: How to use EventBus for non-Presenter class in GWTP?

2013-10-17 Thread Joshua Godi
Just inject the EventBus into your DialogBox. On Thursday, October 17, 2013 11:49:35 AM UTC-5, Tom wrote: I am using GWTP platform eClipse to build webapp. In Eclipse, when creating a Presenter, it will create 3 files (ex: SearchPresenter.java, SearchView.java, SearchView.ui.xml):

Re: Error when defining a generic Composite widget using Java Generics

2013-10-17 Thread Steen Lillethorup Frederiksen
Hi Steve Jens Thanks for your input - I haven't yet had time to look at it, but your input is appreciated. I will leave a note here, as soon as I have had time to dig a little more into it... BR Steen Den onsdag den 9. oktober 2013 16.12.46 UTC+2 skrev Steen Lillethorup Frederiksen: I am

Problems with super dev mode: Can't find any GWT Modules on this page

2013-10-17 Thread crojay78
Hi, i followed a lot of threads at stackoverflow and here in this group concerning the super dev mode. But it still does not work on my side. I have a multi module maven gwt project and want to use super dev with it. Actually it works to start the codeserver with the mvn gwt:run-codeserver

Re: Overriding CSS styles in ResourceBundle

2013-10-17 Thread Joel Cairney
I'm actually finding that this is not a complete solution. I tried using this combination of @Import and @Source in a ClientBundle to override a single CSS class on a GWT widget, and took advice from the issue Tomek linked to and extended the CssResource and used it in my overriding

Re: Problems with super dev mode: Can't find any GWT Modules on this page

2013-10-17 Thread Jens
Do you have the following in your App.gwt.xml? add-linker name=xsiframe/ set-configuration-property name=devModeRedirectEnabled value=true/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

GWT SuggestBox PopupPanel with word wrap

2013-10-17 Thread Johann
i´ve build an gwt suggestbox and anything is working fine. I want to add a second result value to the displayString(). I saw in the sourcecode that the popuppanel contain a html table with td class=item item-selected id=gwt-uid-23 role=menuitem colspan=2 style=white-space:

Re: Problems with super dev mode: Can't find any GWT Modules on this page

2013-10-17 Thread crojay78
Thanks for the reply, Yes I added it my app.gwt.xml Am Donnerstag, 17. Oktober 2013 19:43:13 UTC+2 schrieb crojay78: Hi, i followed a lot of threads at stackoverflow and here in this group concerning the super dev mode. But it still does not work on my side. I have a multi module maven

Re: [gwt-contrib] Re: Can someone explain me why I get the following error?

2013-10-17 Thread Jens
How did you recognized that? is that 51.0 in Unsupported major.minor version (for me it is a non-sense) ? Jip. Each Java Version writes its own internal version into each class file. Java 8 = 52.0 Java 7 = 51.0 Java 6 = 50.0 ... A given JVM can only load classes up to their own version

Re: [gwt-contrib] Re: Can someone explain me why I get the following error?

2013-10-17 Thread Cristiano Costantini
Thank you for the useful info! 2013/10/17 Jens jens.nehlme...@gmail.com How did you recognized that? is that 51.0 in Unsupported major.minor version (for me it is a non-sense) ? Jip. Each Java Version writes its own internal version into each class file. Java 8 = 52.0 Java 7 = 51.0

[gwt-contrib] Re: Issue with development mode plugin and Custom selection script / hosted.html that allows separate debugging of multiple GWT applications on a single page

2013-10-17 Thread Jamie Cramb
Hi Thomas, Thanks for the reply and apologies for the delay, I must have missed the email notification re: your reply. Well its great to hear that it is already solved via the xsiframe linker, but not a total loss, I learned a good deal about how the IFrame linker currently works ;) I gave

[gwt-contrib] Reminder: GWT 2.6 feature complete is Nov 4

2013-10-17 Thread Matthew Dempsky
Hi all, Just writing to remind everyone that the GWT 2.6 feature complete deadline is November 4th. On that day I'll fork the GWT 2.6 release branch, and I'll only approve patches for release critical bug fixes. The GWT 2.6 Release

[gwt-contrib] IE10 and historic dates

2013-10-17 Thread Daniel Kurka
Hi all, IE10 does not handle dates the same way other browser do anymore. This breaks a test in the EmulSuite. // IE10 (Standards mode) new Date(Date.parse(3/31/2000)).toUTCString() Fri, 31 Mar 2000 07:00:00 UTC // IE9 (Standards mode) and previous versions of IE new

Re: [gwt-contrib] Re: Issue with development mode plugin and Custom selection script / hosted.html that allows separate debugging of multiple GWT applications on a single page

2013-10-17 Thread Brian Slesinsky
For (1), Super Dev Mode supports multiple GWT apps out of the box. (but you do have to recompile each GWT application you want to debug, one at a time). For (2) I don't think we support multiple instances of the same GWT app. I don't think it's a good idea because you'd be loading the same

[gwt-contrib] Non-client apis and breaking changes

2013-10-17 Thread Colin Alworth
Just wandered by https://gwt-review.googlesource.com/#/c/1040/ and noticed that with this change, any downstream generator/linker using the static helper methods in Name will no longer build across 2.5.1 to 2.6.0. With the other discussions going on about JRE and browser support, perhaps we