Re: Deploying GWT application on a web server

2017-07-18 Thread Rodolfo Raya
Hi, Yes, you can use Eclipse Jetty instead of Tomcat. See http://www.eclipse.org/jetty/ Regards, Rodolfo -- Rodolfo M. Raya rmr...@maxprograms.com Maxprograms http://www.maxprograms.com On Tue, Jul 18, 2017 at 6:15 AM wrote: > Can I deploy the code generated by GWT other

Re: Problems with Eclipse Oxygen and GWT Plugin

2017-07-10 Thread Rodolfo Raya
Hi, Try installing Eclipse for Java Developers instead of the Java EE IDE for Web Developers. You can add all Java EE plugins and GWT to the base IDE. That combination works well for me. Regards, Rodolfo M. Raya On Fri, Jul 7, 2017 at 6:30 AM JP wrote: > Hello, > > I have installed Eclipse Ox

Re: Please Clarify - CritSit needs answer

2017-06-10 Thread Rodolfo Raya
Apps compiled with GWT 2.5.1 work fine with Microsoft Edge. Regards, Rodolfo On Sat, Jun 10, 2017 at 5:29 AM TBGameDesign wrote: > Which Version of GWT is required to run in Edge? > > Which Version of Edge supports GWT? > > I would Humbly Appreciate your response! > > Right now we are getting e

Re: Urgent

2017-04-26 Thread Rodolfo Raya
GWT Material Design, https://github.com/GwtMaterialDesign/gwt-material , works well for me. Regards, Rodolfo On Wed, Apr 26, 2017 at 5:15 AM Sachin Chaudhari wrote: > This is somthing simmilar in questions you may come accross. > If I am not choosing Angular JS I am choosing GWT then for cool

Re: Problem with Window.Location.assign

2017-04-19 Thread Rodolfo Raya
Hi, Use a line like this to download the files: com.google.gwt.user.client.Window.open( "http://target_url_here";, "_blank", null ); Hope this helps, Rodolfo On Wed, Apr 19, 2017 at 3:46 AM Gowtham Reddy wrote: > I have two parallel GWT requests to server,once the server completes

Re: Debug library code in eclipse

2017-04-10 Thread Rodolfo Raya
Expand "Referenced Libraries" and locate the jar in your project inside Eclipse. Right-click the jar and select "Properties". In the dialog that appears, select "Java Source Attachment" and complete the form using the "Workspace location" option. Hope this helps, Rodolfo On Mon, Apr 10, 2017 a

Re: Maven/GWT: include sources in jar with relative path?

2017-03-21 Thread Rodolfo Raya
Ignore my previous reply. I was thinking on regular Java libraries. Rodolfo On Tuesday, March 21, 2017, Rodolfo Raya wrote: > You don't need to include sources. Only binaries are required. > > Regards, > Rodolfo > > On Tuesday, March 21, 2017, Magnus wrote: >&g

Re: Maven/GWT: include sources in jar with relative path?

2017-03-21 Thread Rodolfo Raya
You don't need to include sources. Only binaries are required. Regards, Rodolfo On Tuesday, March 21, 2017, Magnus wrote: > Hello, > when making java libraries containing GWT code, you have to include the sources in the jar file. > I do this in my maven project like this: > > > > >

Re: Synchronization problems with maven and eclipse

2017-03-16 Thread Rodolfo Raya
Hi, I have several Java libraries shared by different applications, including SWT apps. I use an "ant" script to compile my Java libraries. The script copies generated jar files to the different /lib folders of my applications, including GWT-based ones. I run the script from command line and all

Re: How to avoid warning "Server class xyz could not be found in the web app, but was found on the system classpath"?

2017-03-10 Thread Rodolfo Raya
Add your custom library as a .jar file to war/WEB-INF/lib/ Adding a project source code as dependency works for compiling code but not for deploying the application. Regards, Rodolfo On Fri, Mar 10, 2017 at 2:47 PM Magnus wrote: > Update: > > gwt-servlet.jar exists in war/WEB-INF/lib/ > > -- >

Re: Mojo's Maven Plugin for GWT - general questions

2017-02-26 Thread Rodolfo Raya
Hi, I can't help you with Maven commands. I only use it for managing some dependencies in a few projects that force me to use Maven. Creating GWT projects with the plugin allows me to run and debug. That's all I need. Best, Rodolfo On Sun, Feb 26, 2017 at 4:01 PM Magnus wrote: > Hello Rodolfo

Re: Mojo's Maven Plugin for GWT - general questions

2017-02-26 Thread Rodolfo Raya
Hi, In "Package Explorer" right click on the project and there you can select "Run As" -> "Web Application". Regards, Rodolfo On Sun, Feb 26, 2017 at 1:35 AM Magnus wrote: > Hello, > > I am evaluating Mojo's Maven Plugin for GWT using GWT:2.8.0 and Eclipse > Neon. > The docs contain some state

Re: GWT 2.8.0 Eclipse

2017-02-23 Thread Rodolfo Raya
The standard plugin for eclipse neon available at https://dl.google.com/eclipse/plugin/4.6 works fine with GWT 2.8 Regards, Rodolfo On Fri, Feb 17, 2017 at 1:45 PM wrote: > Hi, I have noticed that GWT 2.7 is 3 years old. GWT 2.8 final was released > like half a year ago. How should one develop

Re: standalone application

2017-01-06 Thread Rodolfo Raya
On Fri, Jan 6, 2017 at 11:31 AM David wrote: > Is it possible to develop a standalone application using GWT? This > application requires to run across all platforms. > > Yes, you can develop a standalone application using GWT. I did it with a Java application using SWT for the GUI and embedded Je

Re: Styling text area editor / Rich text

2016-12-26 Thread Rodolfo Raya
> > > On Monday, December 26, 2016 at 3:27:30 AM UTC-6, Rodolfo Raya wrote: >> >> Hi, >> >> Use RichTextArea (com.google.gwt.user.client.ui.RichTextArea) for that. >> Hide the toolbar and pass the text to edit in a element with a style >> attribute that set

Re: Styling text area editor / Rich text

2016-12-26 Thread Rodolfo Raya
Hi, Use RichTextArea (com.google.gwt.user.client.ui.RichTextArea) for that. Hide the toolbar and pass the text to edit in a element with a style attribute that sets font and color. Regards, Rodolfo On Mon, Dec 26, 2016 at 3:19 AM Joel wrote: > > I don't need much in the way of a text editor.

Re: Adding Material Design Inherits elements to already existing vanilla GWT project changes the main look of the application

2016-11-28 Thread Rodolfo Raya
Hi, Can you share the .ui.xml part? If you didn't use UIBinder, can you share a simplified version of your Java code? Regards, Rodolfo On Mon, Nov 28, 2016 at 5:29 AM Olar Andrei wrote: > Hello everybody, > > Today I'm trying to integrate GWT Material Design into my project. I > already have a

Re: GWT UI Library: which one?

2016-11-24 Thread Rodolfo Raya
GWT-Material gives GWT apps a very nice modern look. I don't know if it qualifies as "wow". Regards, Rodolfo On Thu, Nov 24, 2016 at 2:32 PM coderwurst wrote: > > Hello, > > > I am working on a research task to compare pros and cons of using GWT or > Angular2 for the UI on our project; we curre

Re: GwtMaterialDesign vs gwt-polymer-elements

2016-11-18 Thread Rodolfo Raya
Hi, You can mix gwt-material and Vaadin's polymer elements in the same project. After working for years with Sencha's GXT I decided to try gwt-material, which looks a lot better and does not have the high cost of GXT. Migration was easy and painless. When I found a bug in gwt-material uploader (t

Re: A desktop for smartgwt

2016-11-10 Thread Rodolfo Raya
I used GXT for many years and then the license renewal price went crazy. My current license covers GXT 3.x but it does not work with GWT 2.8. Now I'm using GWT-Material with GWT-2.8 and the combination is great. Don't miss GXT at all and my apps look much better. Browse https://github.com/GwtM

Re: Get data from a JavaScriptObject

2016-11-08 Thread Rodolfo Raya
Afaik JSNI is not the proffered way of doing things in the GWT world. > > Hope that helps > > > On Tue, Nov 8, 2016 at 1:49 PM, Rodolfo Raya wrote: > > > Hi, > > I'm trying to use GWT Polymer from Vaadin and JavaScriptObject is killing > me. > > The Upl

Get data from a JavaScriptObject

2016-11-08 Thread Rodolfo Raya
Hi, I'm trying to use GWT Polymer from Vaadin and JavaScriptObject is killing me. The Upload widget returns a JavaScript object that is supposed to be a JavaScript 'File' and I can't extract the file name from it. How can I convert this JavaScriptObject to a useful Java object? Many thanks