Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2022-02-21 Thread Luis Fernando Planella Gonzalez
> Our current workflow is using SuperDevMode + Jetty and I'd like to provide similar experience to our team. I had a similar concern, as before we both SuperDevMode and the app in the same Java process. After the switch, we need to start the codeserver and then the app, via Tomcat. But, things

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2022-02-20 Thread Luis Fernando Planella Gonzalez
We started using GWT in our project in 2009 (GWT 1.5.0!) When we moved from Maven to Gradle in 2020 (one of the best decisions ever, because the project is complex, has a lot of code generation and Gradle's skipping of already executed tasks is a must - it was unbearable with Maven), we've also

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-11 Thread Luis Fernando Planella Gonzalez
We ended up using no plugins for GWT with Gradle. Even if there are some, none of them fit well. Luckily, GWT compiler has a nice CLI, so... Also, we make the gwt a subproject, as we don't use GWT RPC anyway. This helps keeping gwt-dev out of any runtime classpath!!! Below is a trimmed version

Re: Is GWT 3.0 /GWT 2.9 dead?

2020-02-20 Thread Luis Fernando Planella Gonzalez
e big apps and making GWT3.0 that only works for new apps >> only or requires app rewrite does not make any sense. >> >> to get more insight on what have been done check this list >> >> https://ci.vertispan.com/ >> >> On Wednesday, February 19, 2020 at 3:21:0

Re: Is GWT 3.0 /GWT 2.9 dead?

2020-02-19 Thread Luis Fernando Planella Gonzalez
It has always been said that GWT is active when similar questions are asked in the forum. However, given that the last version, 2.8.2, was released on Oct 19, 2017 and was a bugfix for the 2.8.0 version, released on Oct 20, 2016, I can't see it as "active". At least it smells bad! Even the 1.0

Re: GWT 2.8.0-rc1 and closure compiler

2016-08-04 Thread Luis Fernando Planella Gonzalez
Em quinta-feira, 4 de agosto de 2016 12:03:04 UTC-3, Thomas Broyer escreveu: > > > > On Thursday, August 4, 2016 at 2:21:29 PM UTC+2, Luis Fernando Planella > Gonzalez wrote: >> >> I've always used the closure compiler with past versions (even with >>

GWT 2.8.0-rc1 and closure compiler

2016-08-04 Thread Luis Fernando Planella Gonzalez
I've always used the closure compiler with past versions (even with 2.8.0-beta1, which we have used in production already). Now, to my surprise, it is no longer supported in GWT 2.8.0-rc1, as there's no mention to it in the release notes (http://www.gwtproject.org/release-notes.html). Now the

Generic way to acess a entityProxy properties

2016-03-04 Thread Fernando Castro
Good night. As i have a dozen entities in my system, and pretty much the same layout for their display, i'm trying to create a generic panel, wich could receive any entityProxy and a set of parameters, those parameters would be the path of the attribute i'm trying to display. My ideas was to,

Re: WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.

2015-11-30 Thread Fernando Almeida
Jeff, it worked for me too. Thanks. On Friday, June 14, 2013 at 2:02:26 AM UTC+1, Jeff Guangjian Du wrote: > > well well, 4 years later, I came across the same problem. > here's my solution: > open regedit.exe ( really hate Microsoft and their regedit.reg). > change the permission of key: >

Re: Next release

2015-10-16 Thread Luis Fernando Planella Gonzalez
"classpath conflict is generally not a valid reason, because the part of GWT that includes Jetty is not concerned about the server side of the applications" Unless you run [Super]DevMode, which runs both in a single JVM, then it is a pain. There are other libs which are bundled in GWT jars,

GWT 2.8 update

2015-07-10 Thread Luis Fernando Planella Gonzalez
I'd like to ask for an update on the planning for 2.8 release. Are there still many missing functionality? What is the tentative release schedule? I'm avid to change our project source level to Java 8, but I'm not confident in using the SNAPSHOT in a release version of our app. Any chances it

Re: Static vs dynamic String internationalization

2015-02-24 Thread Luis Fernando Planella Gonzalez
That, of course, depends on the application requirement. I work on a very large app which is not (only) used by ourselves, but by other organizations. And on each organization, administrators can change translations on the fly - just a F5 or logout / login away. In this scenario, of course,

Re: Current state of one .js file per module

2014-12-06 Thread Luis Fernando Planella Gonzalez
Ok, I'll try to use separated servers for code server and server side. Regarding the monolithic .js, in GWT 1.6 it was impossible to debug in both Chrome and Firefox - they both crashed, and I always suspected that the js / sourcemap file were too big. Now with GWT 2.7 I can debug normally in

Current state of one .js file per module

2014-12-05 Thread Luis Fernando Planella Gonzalez
Hi. I created an issue several months ago - https://code.google.com/p/google-web-toolkit/issues/detail?id=8581[1] to split up generated .js. The answer was that a .js file, with its corresponding source map, would be generated per module. I'm analyzing now (with GWT 2.7.0) the output, and I

Re: add mobile version to existing GWT app?

2014-11-30 Thread Luis Fernando Planella Gonzalez
ok, but this leads me to the question, why we don't use REST/JSON right from the beginning? Isn't it a potential option for nearly any web application today to be complemented by a mobile version some day? I work in a large project which started in 2008, but was not full time back

Re: add mobile version to existing GWT app?

2014-11-30 Thread Luis Fernando Planella Gonzalez
ok, but this leads me to the question, why we don't use REST/JSON right from the beginning? At the beginning of a project you usually know what you want to do. So if you want native clients for different platforms then you will start with some sort of REST/JSON or protobuff/thrift/...

Re: Firing Custom Event in GWT

2014-08-24 Thread Fernando Castro
If you are firing a event when there is a change event or a blur event. i don't think you will have a performance issue, however, if you are listening to the key pressed event, so maybe you application will be a bit slower. Em quarta-feira, 23 de julho de 2014 02h36min27s UTC-3, Mohammed

Re: OnClick event fired more than one time for one click

2014-08-24 Thread Fernando Castro
In my practice i have seen this behavior a few times and i can say that, this double click is a matter of several factors, OS, browser version, the mouse the user have. But i had a few times the following problem. i had a flow where i added a click handler to my widget, however this flow was

How to trigger a click in a Frame

2014-08-24 Thread Fernando Castro
I have a third party application that i want to embedded in my GWT app, however, this application is a swf, with a menu for some intro animation. I want to trigger a click the menu when the swf load to open the part that i need. Does someone have a idea? -- You received this message because

Re: Using SuperDevMode with code splitting

2014-02-18 Thread Luis Fernando Planella Gonzalez
Fernando Planella Gonzalez Em 18-02-2014 04:57, Klemens Schrage escreveu: Maybe there are technical reasons for this since trying to use SourceMaps with CodeSplitting in a production environment gave me debugging problems (see https://groups.google.com/forum/#!topic/google-web-toolkit

Re: Using SuperDevMode with code splitting

2014-02-17 Thread Luis Fernando Planella Gonzalez
: On Friday, February 14, 2014 8:50:22 PM UTC+1, Luis Fernando Planella Gonzalez wrote: Well, after patching CompilerOptionsImpl in gwt-codeserver.jar to return true in isRunAsyncEnabled(), the code server started splitting the code, but source maps were only generated

Using SuperDevMode with code splitting

2014-02-14 Thread Luis Fernando Planella Gonzalez
Hi. I'm recently attempting to use SuperDevMode, but our project is quite large, and the generated compiled .js has ~12MB. Chrome struggles (and hangs) when attempting to download source maps, making the whole debugging unpractical. Without SuperDevMode, we use code splitting, and the fragments

Re: Using SuperDevMode with code splitting

2014-02-14 Thread Luis Fernando Planella Gonzalez
for this? Thanks in advance. Em sexta-feira, 14 de fevereiro de 2014 15h55min02s UTC-2, Luis Fernando Planella Gonzalez escreveu: Hi. I'm recently attempting to use SuperDevMode, but our project is quite large, and the generated compiled .js has ~12MB. Chrome struggles (and hangs) when

Support for ARIA in CustomWidget (UiBinder) in SuperDevMode

2014-02-10 Thread Beniton Fernando
Hi , I have a custom widget which act like a checkbox. Now i want set role as check box through UiBinder like my:Checkbox role=checkbox ui:Field=ee ... The works perfectly fine in GWT development mode. But when i try to run in SuperDevMode, it is not compiling. give me following error

Re: Support for ARIA in CustomWidget (UiBinder) in SuperDevMode

2014-02-10 Thread Beniton Fernando
But it is not failing in DevMode. On Monday, 10 February 2014 17:11:20 UTC+5:30, Thomas Broyer wrote: There's no reason it would behave differently; it should also fail in DevMode. On Monday, February 10, 2014 12:35:08 PM UTC+1, Beniton Fernando wrote: Hi , I have a custom widget which

Re: Support for ARIA in CustomWidget (UiBinder) in SuperDevMode

2014-02-10 Thread Beniton Fernando
Sorry Thomas my mistake. I was using a BeanParser patch in DevMode. which i forgot to use in SuperDevMode. Thanks for your help. Beniton On Monday, 10 February 2014 17:15:40 UTC+5:30, Beniton Fernando wrote: But it is not failing in DevMode. On Monday, 10 February 2014 17:11:20 UTC+5:30

Mask for money values ?

2013-10-29 Thread Fernando Paiva
Hello all I'm looking for some how to add money mask for a TextItem. I need to setting my caret position right and each number that I enter the mask goes work. example. 100,000.00 How to do this ? thanks -- You received this message because you are subscribed to the Google Groups Google

LookAndFeel with GWT ?

2013-09-18 Thread Fernando Paiva
Hello all There's an mode to add LookAndFeel in my project GWT ? how to ? thanks ! -- 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

Re: change in children not saved in GWT 2.5.1 after implement OSIV

2013-06-04 Thread Fernando Castro
The only work around that i have found is to persist the entity child in a diferent request. In my case i have a ParentEntity with a SetChildEntity. When persisting a new set, it work just fine, but when i try to update the values, the modifications never reach the server. I tried to create a

Re: change in children not saved in GWT 2.5.1 after implement OSIV

2013-06-01 Thread Fernando Castro
Same problem, Still haven't found any good solution, Em sexta-feira, 31 de maio de 2013 11h50min21s UTC-3, Yan escreveu: Hi there, I have a Parent object containing a list of Children objects. Both are EntityProxy. My RequestFactory API is to persist the Parent along with Children

Re: UiBinder and abstract class

2013-02-08 Thread Beniton Fernando
How do we do that? On Tuesday, 2 February 2010 04:55:17 UTC+5:30, matttai wrote: You are probably setting setWidget(uiBinder.createAndBindUi(this)); in the extended class. I don't see your bind statement for the second class so i cannot tell so it is just a guess. Bind the loginbox

Re: MVP Framework

2012-06-19 Thread Fernando Balmaceda
Please see gwt platform (gwtp) . Is great El 08/06/2012 1:08, titowinky titowi...@gmail.com escribió: Is there any example here (other than the Contacts tutorial) about the MVP framework with detailed explanation? The contacts tutorial seem to jump ... not a thoroughly explained article in my

Re: How to share classes between two different modules with two different pages

2012-03-29 Thread Fernando Varella Lopes
i think that you can make a new module for the classes you want use in other two, and inherit it. Em terça-feira, 20 de março de 2012 18h22min58s UTC-3, Deepak Singh escreveu: Hi All, I have a GWT project with 2 modules. ModuleA and ModuleB Both are having their own html page. i.e. tow

Re: Hosting issue

2012-01-29 Thread Sudhakar Fernando
Hi Nitheesh, my assumptions of the problem is as below. 1. you have created a GWT project with RPC and connect database from MySQL. 2. if you deploy the GWT War files in Tomcat which is installed in your local machine,it is working properly. 3. if you deploy in tomcat which is

GWT and Hibernate

2012-01-20 Thread Fernando Vieira
Hi, I started to use GWT with Google App Engine (GAE) and did all the pages and navigation between them. I also have another project when I use hibernate. So, I have the following scenario: GWT as presentation layer and this other project as business logic. I use RPC to make the calls betweend

Mouse click not working on ListGrid

2011-11-01 Thread David Fernando
I have a strange problem and i am sure it is just simple mistake of some kind but i cant really find it and i dont really know what to search. I create a new window with VerticalPanel in it. Inside this Vertical Panel i put TabSet with SelectItem component. The problem is that clicking on drop

Re: show [ERROR] Element may only contain a single child element in gwt 2.4.

2011-10-22 Thread David Fernando
=textArea /                   /g:VerticalPanel           /g:VerticalPanel         /g:center      /g:DockLayoutPanel /ui:UiBinder On Oct 21, 4:44 pm, David Fernando fernando33...@gmail.com wrote: I got error when I compile the project. Please give your suggestion. g:DockLayoutPanel

Right click on CellList!

2011-10-22 Thread David Fernando
Give your suggestion to fire a right click event on cellList. Where do i include the event?. I have been wating for your reply. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

show [ERROR] Element may only contain a single child element in gwt 2.4.

2011-10-21 Thread David Fernando
I got error when I compile the project. Please give your suggestion. g:DockLayoutPanel ui:field=dock g:north size=25 g:FlowPanel g:Button ui:field=saveLogin/ g:Button /g:FlowPanel /g:north

Adding popup on CellTable header

2011-10-19 Thread David Fernando
Add popup on cellTable header. When I click on the header not recognize the event. I render TextInputCell in the header of CellTable. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Apply style to header, row, cell in cellTable

2011-10-15 Thread David Fernando
Thanks, working. On Oct 14, 6:16 pm, Sudhakar Abraham s.abra...@datastoregwt.com wrote: Add style to cellTable using this  CellTable.Resources interface. Pass the CellTable.Resources object into CellTable constructor. Change the property in CellTableStyle.css file as you wish. S.

Apply style to header, row, cell in cellTable

2011-10-13 Thread David Fernando
Change the existing style to my own style for cellTable. where do I change the property in gwt. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from

Binder problem in ui.xml file?

2011-10-12 Thread David Fernando
Compile gwt application, I got the error show[Error] Element may only contain a single child element, but found g:FlowPanel ui:field='flow1'and g:FlowPanel ui:field='flow2'. Element g:center. Advance thanks. ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'

Wrong RPC typeSignature

2011-04-07 Thread Fernando Barbat
Hi, I'm having this exception when receiving a complex JPA Entity from server using RPC: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: The response could not be deserialized I tried debugging serialization on server and deserialization on client and found that the generated

Many problems when updating from 2.1.1 to 2.2

2011-02-23 Thread Fernando Barbat
com.example.myproject Validating newly compiled units [ERROR] Errors in 'jar:file:/home/fernando/eclipse/plugins/ com.google.gwt.eclipse.sdkbundle.2.2.0_2.2.0.v201102111811/gwt-2.2.0/ gwt-user.jar!/com/google/gwt/dom/client/CanvasElement.java' [ERROR] Line 49: No source code is available

Re: Many problems when updating from 2.1.1 to 2.2

2011-02-23 Thread Fernando Barbat
I think I know what's happening. I'm using Ext GWT in my project, and for now it isn't compatible with GWT 2.2. http://www.sencha.com/forum/showthread.php?124026-GXT-2.2.2-compilation-error-with-GWT-2.2 On 23 feb, 08:47, Fernando Barbat fbar...@gmail.com wrote: Hi, I tried to update

Re: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException

2011-02-12 Thread Fernando Barbat
Yes, it has a zero argument constructor. As I said, once I recompile, undeploy and deploy again, the problem goes away. I'm using Eclipse and deploy an EAR in Glasfish v3. This EAR contains an EJB jar, a GWT WAR and other jars. I noted that IncompatibleRemoteServiceException sometimes raises up

com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException

2011-02-11 Thread Fernando Barbat
Hi, I'm having an IncompatibleRemoteServiceException very often in development mode. It looks like it raises every time I change my EJB server code, which is in a project referenced by my GWT project. Error: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: Type

Wave

2011-01-09 Thread sudhakar . fernando
Hi guys, Could you please help me creating a interface/GUI like wave. Regards, Sudhakar Empower your Business with BlackBerry® and Mobile Solutions from Etisalat -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: International SimplePager

2011-01-06 Thread Fernando
http://code.google.com/webtoolkit/doc/1.6/DevGuideI18nAndA11y.html On Jan 6, 7:59 am, Micha Roon micha.r...@gmail.com wrote: How can the text for the pager be changed so that it displays in the application's locale? A my application is in French and German, I need the text to be 1 à 10 de 14

Re: Google API Lib GWT

2011-01-06 Thread sudhakar . fernando
Thanks Eric, But how to add the jars in Eclipse.any idea? Empower your Business with BlackBerry® and Mobile Solutions from Etisalat -Original Message- From: Eric Ayers zun...@google.com Sender: google-web-toolkit@googlegroups.com Date: Thu, 6 Jan 2011 10:03:25 To:

Re: Google API Lib GWT

2011-01-06 Thread sudhakar . fernando
Thanks a lot Eric Empower your Business with BlackBerry® and Mobile Solutions from Etisalat -Original Message- From: Eric Ayers zun...@google.com Sender: google-web-toolkit@googlegroups.com Date: Thu, 6 Jan 2011 13:09:54 To: google-web-toolkit@googlegroups.com Reply-To:

Re: Issue with XML object passing using Request Builder

2010-11-08 Thread Fernando
http://code.google.com/webtoolkit/doc/1.6/DevGuideCodingBasics.html#DevGuideXML On Nov 8, 10:47 am, jayalakshmi jahagirdar jayalakshmi.jahagir...@gmail.com wrote: hello all, I have the following requierement: A XML file is at the server side.Need to parse it . I have a nested class . Create

Re: Inherit module JDOM

2010-10-28 Thread Fernando
Usually these jar's that you inherit have a .xml in their root package, just like your gwt project, and are also associated with client-side stuff. On Oct 27, 8:32 am, Pablo G.F blay...@gmail.com wrote: Hello: Im new to this so sorry if this is a trivial question. I wanna use Jdom library in

Re: GWT Complier OutOfMemory issue

2010-10-27 Thread Fernando
Hi: I have the same problem compiling with GWT 2.0.4. My project has about 3500 classes. Did you find any solution? Thanks in advance. The JVM parameters are: -Xss32m -Xms32m -Xmx1024m -XX:MaxPermSize=256m The StackTrace is:

Re: GWT 2.1 hellomvp using GIN

2010-10-20 Thread Fernando Barbat
I had the exactly same doubt. And I thought about it, but couldn't find out how you can do that mapping with GIN. In fact, Roo's generated projects don't use a GIN-based mapping although they use GIN in other parts. So I'm interested to know the answer to this question too. :P On 20 oct, 07:42,

Simulate low bandwith

2010-10-19 Thread Fernando Barbat
Are there any tools which allow us to test our GWT application in low bandwith or high latency environments? I've read this post: http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth Anyway, I want to know if there is any tool or

Re: Firefox gwt dev plugin

2010-10-18 Thread Fernando
My guess would be: it wasn't installed due to permission restrictions. On Oct 17, 7:47 am, FireSnake truefiresn...@gmail.com wrote: I've installed this plugin, buf firefox still requesting: Development Mode requires the Google Web Toolkit Developer Plugin -- You received this message because

Re: Ejb and gwt..?!

2010-10-10 Thread Fernando Barbat
Yes, you can do that. I tried it a few days ago and it worked. In my case, I implemented a servlet which would act as a bridge between RPC services and an EJB. I based on this : http://dobesland.wordpress.com/2007/08/01/gwt-to-ejb-bridging/ Basiically, don’t implement the GWT service’s interface

Re: Ejb and gwt..?!

2010-10-10 Thread Fernando Barbat
I know maybe it's not easy to understand what I did from what I wrote there, but I think I have gotten off th track. :P I if you are interested in that, you can read the post I mentioned, or just ask me. On 10 oct, 13:11, Fernando Barbat fbar...@gmail.com wrote: Yes, you can do that. I tried

Re: Benchmark

2010-09-28 Thread Fernando
very interesting, even more if coupled with this one (read it yesterday): http://groups.google.com/group/google-web-toolkit/browse_thread/thread/d20b0d9cad299223 imho, GWT Team should address to these performance issues as soon as they have the time if we're going to use Java on a daily basis

Re: upgrade from GWT 2.1 to GWT 2.2

2010-09-24 Thread Fernando
there's no gwt 2.2... isn't it smart gwt, ext gwt or a gwt milestone? On Sep 24, 1:49 am, navS naveenkumarnl1...@gmail.com wrote: Hi team, currently am using GWT 2.1, now i have to upgrade it to version 2.2. how do i start doing it. Thanks naveen -- You received this message because you

Re: Handling too many locales in a large scale real life app

2010-08-30 Thread Fernando
just in case... after trying the EPFE plugin that Dolber posted (btw, thanks for the tip) I found out that the project was put on ice (source: http://epfe.sourceforge.net/index.php?option=com_contentview=sectionlayout=blogid=1Itemid=3) their own authors point out to another plugin, Eclipse

Handling too many locales in a large scale real life app

2010-08-27 Thread Fernando
So, in my company we face a problem where we have too many properties files to handle, and they are all large, every now and then one properties is left outdated and is missing some translations. I wanna know if there's an easy way (app, library, anything...) to deal with them besides a strict

Re: Registering events with Custom widgets..

2010-08-24 Thread Fernando Barbat
Maybe this could help: http://code.google.com/p/google-web-toolkit-incubator/wiki/GwtEventSystem On 24 ago, 04:47, Aditya 007aditya.b...@gmail.com wrote: Hello,          I m trying to design a custom widget for which i m trying to handle some events such as onFocus etc. But i dnt know how

Re: Horizontal tab bar or tab layout

2010-08-18 Thread Fernando
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/TabBar.html On 18 ago, 02:41, Sunny sravip...@gmail.com wrote: I need to create a horizonatal tab bar/panel inside a tab bar. How can i create the horizaontal tab bar Thanks -- You received this message

Re: Problems creating my first reusable module: import cannot be resolved

2010-08-18 Thread Fernando
Your .xml seems out of place On 17 ago, 18:12, Sleeveen pstron...@gmail.com wrote: I'm in the process of trying to create my first reusable module in GWT. For now, this module contains only some simple classes to be used as part of a GWT RPC implementation. The module DOES NOT have an

Re: Special character issue using Constant

2010-08-18 Thread Fernando
They have to be doubled, two apostrophes L''ajout de votre donnée a été accepté On 18 ago, 06:40, Christophe cdebuss...@gmail.com wrote: Hi Everyone, I have an issue with a special character not coming back as it should. Here is what I have: Labels.properties -- text

Re: Run time designing ( Dynamic text boxes )

2010-08-18 Thread Fernando
Add a listener to that text box that adds those X textboxes On 16 ago, 11:54, AJAY SINGH AZAD ajaysingha...@gmail.com wrote: So, the problem: My concept is that  application reads a integer from a TextBox after the user wrote it in there e.g. 3 and then creates 3 new TextBoxes. Reply ASAP

Re: Encoding

2010-08-18 Thread Fernando
UTF-8 is supposed to reconigze this set of chars, I'm guessing there's something wrong with your environment If you can't find the defect, try using HTML codes for the time being I use this site to check the codes for each character: http://www.lookuptables.com/ On 16 ago, 04:10, sgt dwarf

Re: Resizable Text Area

2010-08-18 Thread Fernando
You could make one, creating your own custom widget. Before doing that, check Smart-GWT or other GWT libraries if there isn't one resizeable textarea available On 16 ago, 23:28, Constantin Tanno constantin.ta...@gmail.com wrote: Does anyone know how to create a resizable text area in GWT?  This

Re: JS works in html file but not in httpServlet

2010-08-18 Thread Fernando
http://lkamal.blogspot.com/2008/09/java-gwt-servlets-web-app-tutorial.html On 14 ago, 17:02, poe stefan.poe...@googlemail.com wrote: Hi everybody, i've got a problem. When I include my main,nocache.js in an html file everything works fine when I run it from a httpServlet nothing is loading.

Re: Excessive number of property descriptors

2010-08-11 Thread Fernando
split it into multiple files On 11 ago, 02:39, G. Vaaler g...@dataloy.com wrote: I got the following just now trying to GWT-compile for testing: gwtc:       [java] Compiling module com.dataloy.webtest2.TestApp       [java]    Scanning for additional dependencies: jar:file:***       [java]  

Re: Upgrade from 1.5.3 to 2.x

2010-08-11 Thread Fernando
I did the migration from 1.6.x to 2.0.x and it was pretty much straightforward, just a couple deprecated elements (listeners - handlers), but before that, from 1.5.x to 1.6.x, it seems that they ran into some trouble... On 11 ago, 09:37, cupakob sira...@gmail.com wrote: HI *, we have an

Re: Instantiate composite on the server side

2010-08-06 Thread Fernando Barbat
You can do that on the client side. Although you don't have reflections, you can have a helper class which can do that work for you. That helper class could have a big if, else if, else if clause and compare classes using instance.getClass(). Every time you add a new class you want to use

Re: Instantiate composite on the server side

2010-08-06 Thread Fernando Barbat
(); else if (class == MyClass2.class) return new MyClass2(); else throw new CouldntInstanceClassException(); } } It is type safe, although you can have a CouldntInstanceClassException() if you forget to add the corresponding comparison. On 6 ago, 08:19, Fernando Barbat fbar

Re: Instantiate composite on the server side

2010-08-06 Thread Fernando Barbat
) return new Button(); else throw new RuntimeException(); } } On 6 ago, 12:58, Fernando Barbat fbar...@gmail.com wrote: I was't so clear so I want to put it with an example. Let's suppose your helper class is named Reflector. This class could

Re: i18n translations

2010-08-05 Thread Fernando
I can help you with portuguese (from Brazil). On 5 ago, 10:55, ale aleee...@gmail.com wrote: Of course I want!!! Thank you! On 5 Ago, 10:47, Константин Ксенофонтов phone0...@gmail.com wrote: ale, send a file. i will help you with russian in several days if you want. 2010/8/5 ale

Re: CalendarService application showing total meeting from Google Calendar

2010-08-05 Thread Fernando
the problem is the CalendarService import check if it is the right one and also your gdata library version On 5 ago, 06:06, ichi ichi8...@gmail.com wrote: Hai, I'm a newbie trying this piece of code to show the total schedule we have from Google Calendar, I've already import several package and

Re: GWT + Hibernate + MySQL + Tomcat + Ant + Log4j + SVN; is this possible all together?

2010-08-04 Thread Fernando
Yes, I did a project a few months ago with everything you listed except, maybe, Hibernate I say maybe because the project itself used an internal framework very similar to Hibernate On 3 ago, 05:18, Sanky 74.san...@gmail.com wrote: Hello, I am learning GWT for a while. I tried tutorials of GWT.

Re: Firing native events in GWT?!

2010-08-03 Thread Fernando Barbat
I don't have the answer to your question but maybe this could help: http://code.google.com/p/google-web-toolkit-incubator/wiki/GwtEventSystem On 3 ago, 06:40, Blaze baze...@gmail.com wrote: Hi all, I have one question...how can we fire a native event in gwt...?? by native event I think on let

IE8 problem when using Singleton and DockLayoutPanel

2010-07-25 Thread Fernando Barbat
Hi everyone, I have a Welcome Screen which is made by hand from the entry point. On the other side, I have Widget named Main which uses the Singleton pattern: this Widget encapsulates the application funcionality and there should be only one instance in the application. This Widget is a composite

Centering a panel inside a ScrollPanel

2010-07-25 Thread Fernando Barbat
Is there any way to center a panel inside a ScrollPanel? When I have to center a panel inside any other panel that is not a ScrollPanel, I use CSS: Parent position: relative; Child position: absolute; left: 50%; top: 50%; margin-left: -(panelWidth/2) margin-top: -(panelHeight/2)

Re: GWT and JSON (RequestPermissionException)

2010-04-20 Thread Fernando
I'm also new to GWT, but I think this is why isn't working when you change the URL: http://en.wikipedia.org/wiki/Same_origin_policy On Apr 18, 5:58 pm, nasionalem sakarya.me...@gmail.com wrote: I am new in GWT 2.0 and JSON. I need to get some values using JSON. so I downloaded json sample from

Re: How to implement hashCode() and equals() for a point in 2D-space (x,y) in GWT?

2010-03-31 Thread Luis Fernando Planella Gonzalez
Anyone has a better idea? public boolean equals(Object obj) { if (!(obj instanceof Point)) { return false; } Point p = (Point) obj; return fX == p.fY fY == p.fY; } public int hashCode() { return (int) (pX + pY); } -- You received this message because you are

Re: style of FileUpload widget

2010-03-03 Thread Luis Fernando Planella Gonzalez
This has nothing to do with GWT. Inputs of type file cannot be styled using normal CSS. This has been an issue for years, and I don't know if it will ever have a standard solution. However, there are some obscure techniques, like this one: http://www.quirksmode.org/dom/inputfile.html On 3 mar,

Re: style of FileUpload widget

2010-03-03 Thread Luis Fernando Planella Gonzalez
I have implemented something like this in my own app, but can't post the GWT code. However, here is the HTML sketch I reproduced in GWT with widgets: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html head style

Re: Referencing deprecated class warning stack

2010-01-08 Thread Luis Fernando Planella Gonzalez
I've got the same type of exception with same environment. Is there something that we missed? Yes, you missed the thread which is already discussing it ;) http://groups.google.com/group/google-web-toolkit/browse_thread/thread/cbf566637f03496a/a676bf46bb463f94?#a676bf46bb463f94 -- You received

Re: Deprecation warning in all RPCs dealing with collections on GWT 2.0 RC2

2010-01-04 Thread Luis Fernando Planella Gonzalez
Could you add a bug to the GWT issue trackerhttp://code.google.com/p/google-web-toolkit/issues/list ? Done: http://code.google.com/p/google-web-toolkit/issues/detail?id=4438 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Deprecated XXXListenerCollection warnings when migrating to GWT 2.0

2009-12-21 Thread Luis Fernando Planella Gonzalez
I had already posted both the problem and the answer at http://groups.google.com/group/google-web-toolkit/browse_thread/thread/cbf566637f03496a Anyway, to see the real problem, compile with log level = debug and with the -compileReport option. You will see several files *.rpc.log. Those will

Limiting serializable types in RPC

2009-12-14 Thread Luis Fernando Planella Gonzalez
Is there a way (it would be nice if there were one) to exclude types from RPC? Here's the concrete use case: In our project, the RemoteService interfaces are defined in a separate project as the web layer. And all methods / parameters use the Java best practices: always reference collections by

Re: Deprecation warning in all RPCs dealing with collections on GWT 2.0 RC2

2009-12-11 Thread Luis Fernando Planella Gonzalez
This issue is still present on GWT 2.0 final. I've made some tests: creating a new GWT project with Collections in RPC methods don't result in such code being inserted in the generated JavaScript. The point is: our project is quite huge, but I can confirm that there are no occurrences of any of

Re: GWT 2.0 - Eclipse - Need to Recompile after every change

2009-12-11 Thread Luis Fernando Planella Gonzalez
Make sure you have ?gwt.codesvr=127.0.1.1:9997 at the end of the URL in the browser. That's what makes it use development mode. Otherwise, it will just be the plain old web mode (now called production mode). On 11 dez, 10:46, ziggystardust camke...@gmail.com wrote: Been using GWT / App Engine

Re: Deprecation warning in all RPCs dealing with collections on GWT 2.0 RC2

2009-12-11 Thread Luis Fernando Planella Gonzalez
endup with a lot of code referencing all kinds of Listeners and stuffs that are unrelated to the RPC service. Basically the messages appear because the Listeners are deprecated,but what are they doing there in the first place ? hope someone will clear this up On Dec 8, 7:24 pm, Luis Fernando

Re: Deprecation warning in all RPCs dealing with collections on GWT 2.0 RC2

2009-12-11 Thread Luis Fernando Planella Gonzalez
In fact, there is a very easy way to reproduce it: Just create a RPC method which returns ListListString. You'll see references for those deprecated collections. On 11 dez, 17:39, Luis Fernando Planella Gonzalez lfpg@gmail.com wrote: Just found the answer, and luckily in my case

Re: how large of your GWT compiled code? My one is 850K

2009-12-09 Thread Luis Fernando Planella Gonzalez
, even classes) we need to recompile :-/ I still didn't implement gzip compression, but hope things can get much better... Ah, about IE6: as our app is targeted to late 2010, we won't support IE6 \o/ -- Luis Fernando Planella Gonzalez On 16 nov, 12:19, Bakul bakul.ku...@gmail.com wrote: Hi, Our app

Deprecation warning in all RPCs dealing with collections on GWT 2.0 RC2

2009-12-08 Thread Luis Fernando Planella Gonzalez
Hi. We're using GWT 1.7 and I'm starting to experiment with 2.0 RC2 to evaluate GWT.runAsync(). However, now as I compile the app, I get warning for deprecations in all RPC methods which return collections. I guess it's because the result is declared as java.util.Collection, and the deprecated

Re: MySQL Connection

2009-09-22 Thread Chamira Fernando
Engine (separate from GWT), you *cannot* use an external database. App Engine doesn't allow you to open socket connections, and that is exactly what the getConnection() method does. --Sri 2009/9/21 Chamira Fernando chamira.inc...@gmail.com Hi All, I have the same problem when I connect

Re: MySQL Connection

2009-09-21 Thread Chamira Fernando
Hi All, I have the same problem when I connect to MySQL database, What I understand from the GWT doc, whatever server side scripts we have to in .server package and this will be on server side on host mode when we debug the application. here is the scenario I can get the data from the server

GWT official plugin for NetBeans IDE?

2009-07-11 Thread Juan Fernando Obando Saldarriaga
Is there any plan to launch a GWT official plugin for NetBeans IDE?? -- Juan Fernando Obando Saldarriaga Estudiante de Ingeniería de Sistemas Universidad del Valle Cali, Colombia jfero...@univalle.edu.co --~--~-~--~~~---~--~~ You received this message because you

  1   2   >