Re: [gwt-contrib] Re: Experimental release of Elemental2

2016-08-23 Thread Gilberto Torrezan Filho
Hi Julien, This generator will take GWT to the next level. Integrating GWT with existing js libraries was always time-consuming and error-prone (using either JNSI or jinterop). What is the status of it (what is holding back the project from being open-sourced)? Can we help in any way? --

Is anyone using DockLayoutPanel?

2016-08-23 Thread Gilberto
Not directly related to the question, but if you are targeting modern browsers, I suggest you to use flexbox (pure CSS) instead of DockLayoutPanel to design your page. Take a look at https://philipwalton.github.io/solved-by-flexbox/demos/holy-grail/ for more info. -- You received this

Re: Parsing URI components

2016-08-17 Thread Gilberto
I'm sure there are other implementations around, but I created my own parser: https://github.com/gilberto-torrezan/gwt-views/blob/master/src/main/java/com/github/gilbertotorrezan/gwtviews/client/URLToken.java (take a look at the setToken method). It is part of gwt-views project, that helps

Re: gwt-rc2: jsinterop artifact question

2016-08-17 Thread Gilberto
In my experience, Maven is pretty easy to understand and to deal with when you start a project from day 0 using it. When you try to migrate a project with its own build structure, with "crazy-or-not" build steps, then you will struggle A LOT with Maven to get the things done. The XML aspect of

Re: Poker Fighter: Project coded in GWT

2016-08-17 Thread Gilberto
(it was on v.2.4.0 I think), but the company dropped the project later on, in favor of the Unity game engine. Thanks and congratulations on your product! -- Gilberto -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this grou

Re: redirect GWT application URL With out # sign..

2016-08-08 Thread Gilberto
Hi Gaurav, The standard History mechanism of GWT uses the "#" token by default. To avoid using it, you need to use a different approach. (Always remember that a GWT app is a single page application) You can use the HTML5 pushState to handle your URLs. More info about it:

Re: Ui Binder Alternatives

2016-07-25 Thread Gilberto
Nobody really knows how GWT 3 will be for sure, but I assume GWT 3.0 will be less of a framework and more of a transpiler from Java to Javascript, which other frameworks will be built on top of it. So I wouldn't expect a simple template engine to replace UiBinder, but full featured frameworks.

Re: How to hide page or set invisible during page loading

2016-07-21 Thread Gilberto
Without changing the host page there's little you can do in GWT to avoid showing the original page: the page is rendered while the GWT module itself is loading. So you can't execute GWT code without loading it first. If you can change the the host page, you could add a script to do some logic

Re: How to detect the scrollpanel is still scrolling or not in GWT?

2016-07-21 Thread Gilberto
I don't know if that helps with your problem, but you could leave the events as they are today and only make new requests to the server when the previous one were executed. Something like this: private boolean requestingServer = false; public void onScroll(ScrollEvent scrollEvent) { if

Re: Cascading GWT Application ?

2016-07-12 Thread Gilberto
In that case you can use iframes. Do you have an working example or knows a similar product that uses the workflow you're describing? Maybe looking at a live example I can give you better insights on how to organize your project. On Tuesday, July 12, 2016 at 1:09:47 PM UTC-3, Pierre Mineaud

Re: Cascading GWT Application ?

2016-07-12 Thread Gilberto
est you not to mix multiple compiled modules (*.nocache.js) on the same HTML hosting page. If you need to mix two modules on the same page, create a third project that depends on both modules and create a single *.nocache.js for it. If you want to go crazy you can put Maven modules in the mix (o

Re: Cascading GWT Application ?

2016-07-11 Thread Gilberto
I see. Believe me it's not your fault. GWT is a mature technology, and there are tons of articles and tutorials that were written for different versions in different contexts, and it's hard to know which one is more accurate, mainly when you're starting with the technology. I use Eclipse too,

Re: GWT OAuth2 Open Source Release

2016-07-11 Thread Gilberto
could make an interesting starter project for the community. I also would like to test it with gwt-views <https://github.com/gilberto-torrezan/gwt-views> ;-) Cheers, Gilberto -- You received this message because you are subscribed to the Google Groups "GWT Users" grou

Re: Cascading GWT Application ?

2016-07-08 Thread Gilberto
Since you're building a new application with GWT, I strongly suggest you not to use GWT RPC. Take a look at this thread about the subject. Take a look at the RestyGWT project. You still

Re: Error: GWT developer plugin for chrome

2016-07-08 Thread Gilberto
Are you using the classic Dev Mode (deprecated) ? When using the Super Dev Mode you don't need any browser plugins. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this

Re: GWT RPC in GWT 3.0+

2016-07-07 Thread Gilberto
When I first used GWT, I started using GWT RPC as the main communication channel with the server. Years later, when I first needed a native mobile application, and when I needed to expose API endpoints to partners to integrate data with my services, I realized I should have gone RESTful from

Re: Cascading GWT Application ?

2016-07-05 Thread Gilberto
Bees/GWTP> and gwt-views <https://github.com/gilberto-torrezan/gwt-views> are some examples of such frameworks). But of course all depends on your specific use cases. In my case I had three GWT applications that was part of a larger product. After years maintaining those three separate appli

Re: gwt material and uibinder

2016-07-04 Thread Gilberto
Yes, Thomas is right: you should try other dependency/build management tools before making a final decision on which one to use. The important thing, in my opinion, is to use something that can read the maven central repository and can automate and standardize your build. Glad your problems

Re: What is happening to GWT???

2016-07-02 Thread Gilberto
Guys, threads asking if GWT is dead/dying shouldn't appear as often as it does. Actually they shouldn't appear at all. But they do. Something is definitely wrong. As community we should do something. In my opinion the communication is pretty poor and should be improved. GWT is "too blackbox"

Re: Any elegant approach to integrate Spring security with GWT RPC based application?

2016-07-02 Thread Gilberto
Not the answer you would like to hear, but... In my humble opinion, the elegant solution would be not using GWT RPC at all. Go RESTful. For the annotation problem, I don't know if there's a way to escape... maybe you could try code generation (which usually also relies on annotations...

Re: gwt material and uibinder

2016-07-02 Thread Gilberto
Hi Pierre! Welcome to GWT and GWT Material =) If you want a faster, direct communication with the developers from GWT Material, join us at the Gitter chat: https://gitter.im/GwtMaterialDesign/gwt-material Also, I advise you to really try to use Maven. I know it's hard and sometimes

Re: What is happening to GWT???

2016-07-02 Thread Gilberto
... and that's a problem, at least the way it is developed now. GWT is a more-or-less open-source project. While it is indeed open-source (you can look at the code), the process of developing it depends heavily on closed-source, blackbox projects made by Google, that nobody really knows about

Re: SimplePanel can only contain one child widget

2016-06-21 Thread Gilberto
AbsolutePanel is not a SimplePanel, so the problem isn't there. I guess it is something related to your own domain classes - maybe Diagram. You can also use the browser debugger to see exactly where the error occurs. > > -- You received this message because you are subscribed to the Google

Re: GWT Material Design Addins

2016-06-21 Thread Gilberto
By the way Thomas you can use subpackages after the namespace declaration in UIBinder (GWT Material uses all the time): xmlns:ma="urn:import:gwt.material.design.addins.client" https://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.

Re: Feature Detection

2016-06-21 Thread Gilberto
This is what I do: public static native boolean isOnTouchDevice()/*-{ return 'ontouchstart' in window || navigator.maxTouchPoints; }-*/; -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails

Re: String a == String b

2016-06-03 Thread Gilberto
Reading here (http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsJSNI.html), it seems that Java Strings are converted to Javascript primitive strings (not string objects)... That way, you can't compare pointers to them - if they contain the same characters, they are equal to each other

Re: GWT MaterialDesign Side Navigation bar doesn't work properly for FLOAT type

2016-04-21 Thread Gilberto
ect. By the way, you're welcome to join the project Gitter chat room <https://gitter.im/GwtMaterialDesign/gwt-material> for a closer chat with the developers, or open an issue at the GitHub project page <https://github.com/GwtMaterialDesign/gwt-material/issues> ;-) -- Gilberto On Wedne

GWT Material v.1.5 is out!

2016-04-18 Thread Gilberto
MaterialDesign/gwt-material-patterns> for awesome app templates built with GWT Material. I hope you enjoy using it as much as we enjoy developing it ;-) Cheers, Gilberto -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from t

Re: Fully responsive GWTBotstrap3 / Vaadin (client side only) demo application

2016-03-19 Thread Gilberto
By looking at the video, I had a feeling that it looks too "desktop-ish" yet - tables, menus, small buttons, multiple levels of scrolling on the same panel, and so on. I'd like to see the framework running on an actual mobile device if possible. Do you have an URL where I could access it? On

Re: Updating CellTable row style

2016-03-19 Thread Gilberto
Inspect the row style at the browser developer tools to see which is preventing your classes to be applied. Note that some styles can't be applied at row level, but only at cell level. I guess the border is one of those styles. -- You received this message because you are subscribed to the

Re: Displaying captions on videos

2016-03-15 Thread Gilberto
Here is my idea (not tested): Video video = Video.createIfSupported(); Element el = DOM.createElement("track"); el.setAttribute("label", "English"); el.setAttribute("kind", "subtitles"); //... video.getVideoElement().appendChild(el); -- You received this message because you are subscribed to

Re: GWT-Material vs Polymer

2016-03-15 Thread Gilberto
Hi Evan, I'm an active contributor to GWT-Material, and what I can say about the future is this: the vast majority of widgets from the GWT Material extends a single component (MaterialWidget). When the moment comes for us to support something that's not the old Widget system, we will migrate

Re: Deploy GWT App to Google App Engine

2016-03-13 Thread Gilberto
Hi Stefan, Did you manage to get it working? I put a comment on the SO question you made, but I think you didn't see yet. I have multiple GWT projects running on App Engine, and one of them is open-sourced, maybe it can help you out: https://github.com/gilberto-torrezan/feel-vision (I didn't

Re: onBrowserEvent change Cell colour

2016-03-13 Thread Gilberto
You just want to change the color on mouse over or need something else? I ask that because if the problem is only about changing the color of the cell, you can do that with plain CSS. Something like that: Java code: yourTable.addStyleName("myNiceTable"); CSS: .myNiceTable td:hover {

Re: GWT, App Engine and Google Cloud Vision API demo - with a taste of material design

2016-03-10 Thread Gilberto
There you go: https://github.com/gilberto-torrezan/feel-vision -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@google

Re: GWT, App Engine and Google Cloud Vision API demo - with a taste of material design

2016-03-10 Thread Gilberto
I'm yet to deploy the entire project to GitHub, but in the mean time I can share parts of the code if you want it. ;-) The most relevant part of the GWT code (the camera widget) is already opensourced. -- You received this message because you are subscribed to the Google Groups "GWT Users"

GWT, App Engine and Google Cloud Vision API demo - with a taste of material design

2016-03-10 Thread Gilberto
ial-addins>, to be released with the v.1.5). All are invited to test it out! The most up-to-date demo of the addins can be accessed here: http://gwtmaterialdesign.github.io/gwt-material-demo/snapshot/ Cheers, -- Gilberto -- You received this message because you are subscribed to the Google

Re: How to use DataGrid?

2016-03-09 Thread Gilberto
The fast way to solve that is to set a height in pixels for the DataGrid. Like this: table.setHeight("400px"); ... but that's not ideal for layout purposes. You may want to use a DockLayoutPanel to better accommodate your table, or use a CellTable instead of DataGrid. -- You received this

Re: Carousel.. how to make..

2016-03-08 Thread Gilberto
That's a cool library. To use it within a GWT app, you need to wrap the javascript calls to be called from the Java code. Currently you can do that with JSNI , and from 2.8 onwards, with the final version of JSInterop. Since

Re: enum serialization

2016-03-08 Thread Gilberto
When I used GWT-RPC (nowadays I use REST) I solved the problem simply by not using inner enums. Another way is to overwrite the server code that handles the serialization policy to skip the check of your enums. On Saturday, March 5, 2016 at 7:38:34 PM UTC-3, vikash joshi wrote: > > Even i am

Re: GWT and Kotlin

2016-03-08 Thread Gilberto
In your opinion, do you think Java is still boring to write with Java 8 syntax? Or the is the not-optional type-safety that makes it boring? I agree that the compilation time is slow, but it used to be "world-stopping" slow before the super dev mode. Since you use GWT since 2007 you probably

Re: EventBus and orientation changes for devices

2016-02-27 Thread Gilberto
I don't know how is your code or your use cases, but that seems to be a work for the CSS and its media queries. If you need to detect the page orientation on your Java/Javascript code, a simple way is to register a window size change handler, and check if the width is greater than the height.

Re: Can't acces to a .properties file in .war

2016-02-27 Thread Gilberto
Hi Jeremy, To understand the problem I need some more info. Are you using Maven? If so, your files should be added at src/main/webapp/WEB-INF. Take a look at this question too, it may help you: http://stackoverflow.com/questions/18894129/read-properties-file-in-web-inf-folder-java-using-init

Re: UIBinder and UI update/change at runtime

2016-02-27 Thread Gilberto
That's not an issue of the UiBinder, but the DockLayoutPanel itself. Once you add the central widget, you cannot add anymore other widgets to it ( reference ).

Re: What is best IDE for developing GWT applications?

2016-02-27 Thread Gilberto
Let's get real for a moment: Eclipse is a plug-in hell. Have you ever try to run a multi-module App Engine project with multi module GWT app, configured with Maven? Don't even try, go to the command line and run the server from there. Sometimes you lose days of work just setting up the

Re: ProjectStruture

2016-02-19 Thread Gilberto
I don't think my comment will help you out, but in my opinion you shouldn't go to GWT RPC if you're rewriting the communication with the server. Go RESTful. Given the nature of your application, a pure RESTful structure can not be achieved, but at least you can start using REST frameworks, such

Re: GWT vs AngularJS

2016-02-18 Thread Gilberto
Hi again Stefan ;-) In my opinion its just a matter of preference. If you like Java and are productive with it, use GWT, if you like Javascript and are productive with it, use Angular. I'm on the Java side, so it's quite unfair for me to make a list of pros and cons of each language. You can

Re: GWT Material Design

2016-02-18 Thread Gilberto
and fluid UI too. -- Gilberto -- You received this message because you are subscribed to the Google Groups "GWT Users" 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 group,

Re: DataGrid/CellTable with several tbody elements - frustation on trying to implement

2016-02-18 Thread Gilberto
I don't agree 100% with that, at least not in GWT. The framework should provide a "good enough" default implementation that covers most of the user cases, but not forbid the developer from extending it - I'm not talking about making everything public, but making everything extensible. The

Re: One GWT App - Multiple WAR's

2016-02-18 Thread Gilberto
In that case I think it would be better to have 2 GWT modules, one for the validated war, and one for the non-validated war. To avoid duplication of code, the non-validated module could import the validated one. Both modules would have their code splinted internally (the fragments wouldn't be

Re: How to protect IP in GWT.

2016-02-18 Thread Gilberto
I'd never like to work on a company that doesn't trust in me to access the code I need to maintain. The best you can do to protect your company is to make the developers sign a document stating that the code they would access is a property of the company, and they are not allowed to copy or

DataGrid/CellTable with several tbody elements - frustation on trying to implement

2016-02-18 Thread Gilberto
Hi there, In my app I need to create a table with several sections, by using several tbody elements. For those how are wondering, yes, that's supported by the W3C spec: a table can have multiple tbody elements (see this question at StackOverflow

Re: Add GWT to an existing app engine project?

2016-02-15 Thread Gilberto
Please note that App Engine (without the still-beta Managed VMs) doesn't support Java 8 (and I don't think it will support anytime soon), so when GWT 2.8 comes out, you'll need to stick with Java 7 syntax. Take a look at this issue:

Re: GWT CssResource not propagating width:calc(x) property

2016-02-15 Thread Gilberto
Stefan, convert all your CSS files and declarations to GSS and save yourself from going crazy. With GSS you can use all the CSS (and CSS3!) goodies without pain (including media queries, CSS functions and so on). Take a look at http://www.gwtproject.org/articles/gss_migration.html and

Re: NEW world for me

2016-02-15 Thread Gilberto
I really like RestyGWT for REST communication with the server, instead of RPC. A good reason to use it is to allow the server to be reachable by any client that can talk RESTfully (not just the web browser), such as native mobile apps and other servers. If you

Re: RAM memory continously increasing while using GWT Application in IE Browser

2016-02-15 Thread Gilberto
Which version of GWT are you using? And can you share your code so we can try to find the memory leak? On Monday, February 15, 2016 at 8:05:18 AM UTC-2, thamarai kannan wrote: > > Hi, I am using GWT Application. for this application I am using IE10. > While lading another screen or reloading

Re: Is GWT not being massively adopted because the crawler problem?

2016-01-20 Thread Gilberto
Oh my, Alain, this is so true! That's the main problem with anything "fast to start, hard to maintain". I always use this example of how GWT can help on the long term: like most of the systems, I have a project with a "User" table. Which is mapped to a "User" pojo. One of the columns/fields of

Re: Are there any currently developed GWT Widget Libraries?

2016-01-17 Thread Gilberto
I'm using GWT Material in two commercial projects and I'm quite satisfied with it. It's not really "desktop like" but more focused on responsive views - great for mobile and desktop. In my opinion, nowadays, you should really consider

Re: GWT 3.0 Question

2016-01-17 Thread Gilberto
I assume there will be a migration path from the widgets to world to the... not-widgets world. UiBinder is the standard GWT way of creating declarative UIs. In my opinion, using a declarative way is still better suited for the future than using the procedural way. UIBinder can be discontinued

[gwt-contrib] Re: New Error caused by recent Chrome Update: RangeError: Maximum call stack size exceeded

2016-01-17 Thread Gilberto Torrezan Filho
Hi, I have a large GWT app deployed too, and didn't notice any problem with the new Chrome. Do you use any large GWT framework, such as Vaadin or GXT? Or any framework/lib outside GWT on the client side? Or maybe any native component? On Wednesday, December 16, 2015 at 3:11:10 PM UTC-2, Joshb

Re: When will GWT 2.8 GA realistically happen?

2016-01-14 Thread Gilberto
In my experience, asking for a release date of a project where there are Google folks involved, is the same as asking for peace on Middle East. They never work with strict dates, and when they say a date, it's always wrong - I wish I could do that to my customers =P The lack of communication

Re: The method getMouseWheelVelocityY() is broken on IE 11 in GWT 2.7.0

2016-01-14 Thread Gilberto
others can fast reproduce the problem and provide solutions. Best regards, Gilberto On Thursday, January 14, 2016 at 6:54:57 AM UTC-2, Himabindu Gurla wrote: > > The method getMouseWheelVelocityY() is broken on IE 11 in GWT 2.7.0. It > worked fine in 2.4.0. Is there a fix or work arou

Re: GWT Plugin For Eclipse; Ubuntu 64-Bit; XULRunner Issue

2016-01-02 Thread Gilberto
Well, GWT Designer was an attempt to bring the old Swing/AWT development feel to GWT, but the time has passed and now everyone just use HTML/CSS directly - which is far better when you have web designers on your team. That said, in my opinion, you should use UiBinder for UI, and to be able to

Re: Is anyone using Auth0 (for user login) with GWT?

2015-11-20 Thread Gilberto
That gwt-oauth2 project seems quite abandoned... On Thursday, November 19, 2015 at 9:38:47 AM UTC-2, Alain wrote: > > We had a wrapper for this but decided to roll with GWT-Oauth > > https://code.google.com/p/gwt-oauth2/ > > > > On 19 November 2015 at 11:48, Matthieu Drenou

Re: GWT and GA and analytics.js usage ?

2015-10-29 Thread Gilberto
Well, I didn't try to use it on the server side, but I think you'd have to isolate it as well, or use some nasty reflection stuff to get the job done. On Wednesday, October 21, 2015 at 6:11:38 PM UTC-2, Ed wrote: > > @Gilberto: How do you use the Server side analytics class witho

Re: (GWT + GAE) vs. (GWT + Java + MySQL)

2015-10-14 Thread Gilberto
Wow, the original post is from 2008, when GAE even didn't support Java yet... Totally out of the context nowadays. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: GWT and GA and analytics.js usage ?

2015-10-14 Thread Gilberto
I'm using the universal-analytics <https://github.com/ArcBees/universal-analytics> package from ArcBees on my gwt-views <https://github.com/gilberto-torrezan/gwt-views> project, and in my experience you can avoid most of the gin part if you want, by calling the clas

GWT release cycle

2015-09-14 Thread Gilberto
*GWT release cycle* My feeling is that at each interaction there are fewer developers interested in GWT. I don't know if it is a Google way of doing things (the

Re: Drag and Drop files

2015-09-14 Thread Gilberto
The auto completer tricked you. get -> GWT. Anyway, I couldn't find a good multi file uploader for GWT which is still actively maintained (I have the same problem as the OP). Any suggestions? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To

Re: What is planned release date for GWT 2.8 (with lambdas) ?

2015-08-17 Thread Gilberto
I wish I could say that to my customers =P In my experience, saying It will be released, when it is done is the same as saying we don't have a planning or we are so bad at planning that any release date we set will be postponed. Release fast, release often - is the motto of any agile

Re: Webapp development with respect to upcoming GWT versions?

2015-08-17 Thread Gilberto
and what to avoid (and how to avoid), will be clearer at the 2.8 release. Hope that helps. Gilberto On Monday, August 17, 2015 at 8:39:52 AM UTC-3, Guido Schmidt wrote: I'm currently researching for a web app we are planning to develop at German Cancer Research Center. We already started

Re: An interesting issue

2015-08-17 Thread Gilberto
problems, class whitelisting, use of IsSerializable, and so on. Hope that helps. Gilberto On Friday, August 14, 2015 at 9:47:02 PM UTC-3, Guillaume Rebesche wrote: So I ran into an interesting issue today and I wanted to share it because I didn't find an explanation anywhere on the internet

Re: Jwebsocket for GWT

2015-07-24 Thread Gilberto
You'd have a better luck in this list asking in English instead of Portuguese. A quick Google search gave me this: http://jwebsocket.org/jwsForum219/posts/list/115.page and this http://avricot.com/blog/index.php?post/2010/09/08/Introducing-jwebsocket-and-its-RPCPlugin On Friday, July 24,

Re: How to get autocomplete of CSS3 properties on Eclipse inside the ui:style tag of GWT UiBinder?

2015-07-16 Thread Gilberto
, June 23, 2015 at 3:17:48 PM UTC-3, Gilberto wrote: (Cross-posted from StackOverflow: http://stackoverflow.com/questions/30823483/how-to-get-autocomplete-of-css3-properties-on-eclipse-inside-the-uistyle-tag - I got 0 answers and comments there so far) I can enable autocomplete of CSS3

Re: How to get autocomplete of CSS3 properties on Eclipse inside the ui:style tag of GWT UiBinder?

2015-07-16 Thread Gilberto
Thanks Jens for the answer. Ok, I was missing the GWT DIY Policy™ on this one =) I'll take a look and update this thread and the StackOverflow question if I get something. On Thursday, July 16, 2015 at 3:07:52 PM UTC-3, Jens wrote: You could also use the open source fork of GPE

Re: How to get autocomplete of CSS3 properties on Eclipse inside the ui:style tag of GWT UiBinder?

2015-07-16 Thread Gilberto
Issue reported: https://github.com/gwt-plugins/gwt-eclipse-plugin/issues/79 -- 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: Guidance on transmitting JSON data

2015-07-07 Thread Gilberto
Well, that question is not only valid for GWT, but for the web in general. Is REST an option for you? You can use automatic serializers/deserializers on the server and on the client for JSON data if you wish. I recommend restygwt on the client and Jersey (or RestEasy, or Restlet, or... insert

Re: Important videos from GWT Meet-up 2015

2015-06-29 Thread Gilberto
On thing I'd like to see on GWT 3.0 and beyond is the reduction (or complete avoidance) of the Not invented here syndrome from Google: - Using a standard build tool which integrates well with Maven repositories - and don't force the end user to switch build tools just because -

Re: Cell Widgets in GWT 3.0

2015-06-24 Thread Gilberto
And what about you Thomas, are you going to port the features you implemented in GWT (like GWT Editors) to the 3.0? What are your plans? On Tuesday, June 23, 2015 at 6:01:50 PM UTC-3, Thomas Broyer wrote: Videos about GWT 3.0 were by Google, not the Steering Committee. That being said, it

Re: Cell Widgets in GWT 3.0

2015-06-23 Thread Gilberto
The problem resides on who is that one. From the videos I had the sensation the steering committee will just break everything down and wait for the community to provide the missing features (even key features). I hope I'm wrong. On Monday, June 22, 2015 at 5:18:43 AM UTC-3, Jens wrote: Cell

Re: GWT Material 1.3.2 Update UI / UX

2015-06-23 Thread Gilberto
The demo app running on App Engine is returning 503 - over quota errors: Over Quota This application is temporarily over its serving quota. Please try again later. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this

Re: GWT Compile size for specific classes greatly increased

2015-06-23 Thread Gilberto
Can you share some of those classes? On Tuesday, June 23, 2015 at 4:36:41 PM UTC-3, Dustin Chesterman wrote: Hello - We have a collection of classes that implement a simple interface with a generic method. According to compile reports, all of these classes were about 10k compiled in

How to get autocomplete of CSS3 properties on Eclipse inside the ui:style tag of GWT UiBinder?

2015-06-23 Thread Gilberto
(Cross-posted from StackOverflow: http://stackoverflow.com/questions/30823483/how-to-get-autocomplete-of-css3-properties-on-eclipse-inside-the-uistyle-tag - I got 0 answers and comments there so far) I can enable autocomplete of CSS3 properties for .css and .gss files on Eclipse by following

Re: Issue with a modified interface not beeing updated to the code generator (GWT 2.7.0)

2015-05-23 Thread Gilberto
Ok, I think I solved the issue. The problem is you cannot use the standard java.lang.Class and java.land.reflect.* classes to use reflection when generating code in GWT. You have to use the TypeOracle, JClassType and derivatives. By using them, the injector class is always up-to-date, without

Issue with a modified interface not beeing updated to the code generator (GWT 2.7.0)

2015-05-22 Thread Gilberto
Hi, A user of a framework I'm maintaining (gwt-view https://github.com/gilberto-torrezan/gwt-views) reported a weird bug with one of the code generators, when using the super dev mode with incremental compile: when he updates an interface, used by the generator to generate the output code

Re: A new way to handle page navigation in GWT

2015-05-20 Thread Gilberto
Glad you liked it =) I just posted the v.1.1.0 with better support for dependency injection and some more improvements. Feedback is always welcome ;-) -- Gilberto -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from

Re: How to do smooth scrolling on browser back/next button on same-page navigation?

2015-05-09 Thread Gilberto
I wouldn't recommend disabling the back/next behavior. For your case, you could save the scroll position of each View (using a ScrollHandler http://www.gwtproject.org/javadoc/latest/com/google/gwt/event/dom/client/ScrollHandler.html to catch the events), and when the History is changed, scroll

A new way to handle page navigation in GWT

2015-05-07 Thread Gilberto
Hi folks, I just opensourced a project I was using in several GWT projects to handle page navigation. It is something between Activities and Places and the full featured GWTP: GWT Views - https://github.com/gilberto-torrezan/gwt-views It's a framework to define Views using simple annotations

Re: Why Table Layout in GWT?

2014-12-12 Thread Gilberto
Ok, I won't start another table vs. tableless layout war. There are a lot of resources about it on the web. My point here is simple: if the developer wants to use table layout, for whatever reason, at least the table should behave as expected according to the W3C recomendations, which states:

[gwt-contrib] Re: What's the current plan for GWT 2.7 release?

2014-08-06 Thread Gilberto Torrezan Filho
It's easier to understand and accept the schedule from GWT project (or any other Google or driven-by-Google-culture project) when you apply the Valve time calendar to it. Yes, Valve is the pioneer (that's why the calendar received their name), but a lot of companies and groups use that

Re: GWT version with Java 8 support

2014-07-04 Thread Gilberto
https://lh4.googleusercontent.com/-uhnfMDh5uAw/U7ad0PZpSII/Cw0/7eR79As-8lk/s1600/Screenshot_2014-06-24-22-06-52.png -- 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,

[gwt-contrib] Re: GWT + Maven - Using gwt-dev package as dependency

2014-02-10 Thread Gilberto Torrezan Filho
Thank you Thomas and Colin for your replies. Thomas, sorry for posting in the wrong place. I didn't even know there is a gwt-maven-plugin users group... thanks for pointing that out! Working with separated projects with GWT, Maven, Eclipse (and his friends - the plugins!) and App Engine is

[gwt-contrib] GWT + Maven - Using gwt-dev package as dependency

2014-02-07 Thread Gilberto Torrezan Filho
Hi, I'm using GWT 2.6.0 with Maven, using the gwt-maven-plugin, and in my project I have some auto generated classes (using the generated-with directive on Module.gwt.xml). The generator is a subclass of com.google.gwt.core.ext.Generator. The problem is: every time I build my project, Maven

[gwt-contrib] Using JIRA as issue tracker instead of google code - and other things

2014-02-05 Thread Gilberto Torrezan Filho
Hi, I was wondering if you have considered using JIRA as issue tracker instead of the suplied by google code. Many open source projects uses it (such as JBoss Errai, at https://issues.jboss.org/browse/ERRAI ) and I think it is far superior than the vanilla google code issue tracker - for the

[gwt-contrib] How to report issues of the gwtproject.org site?

2014-02-03 Thread Gilberto Torrezan Filho
Hi, Most of the gwtproject.org links cannot be opened in a new tab (a 404 error page is showed when doing so). For example, clicking on the Documentation Latest Overview to open in a new tab results in 404. Should I open a bug report for that? It is not really related to GWT itself, so I

Re: [gwt-contrib] Re: Questions remain for the GWT.create Steering Committee members

2014-01-07 Thread Gilberto Torrezan Filho
I see the problem here: I don't consider GWT just a web framework (and maybe I'm wrong about that). I consider it a platform on which web frameworks are built (like Vaadin, GXT, Errai and so on). It involves compiler, language, tooling *and* a web framework. And assuming it as a platform, I

Re: [gwt-contrib] Re: Questions remain for the GWT.create Steering Committee members

2014-01-06 Thread Gilberto Torrezan Filho
I rather prefer formal, concrete documents from the steering committee. Keeping all the things just as informal make the project feels like a school project, with no commitment to quality and deadlines. I can't take a project seriously when a documents says there would be a release 02/DEC and

Re: Java 7

2013-04-15 Thread Gilberto
It's just my opinion, but in my mind making the JDK compliance to 1.6 and call that fully compatible with JDK 7 is not... well... what I was expecting (at least). I understand that tweaking the compiler to actually and truly support Java 7 is not easy and demand time. But Java 7 is around for

Re: Video from io 2012 : The History and Future of Google Web Toolkit

2012-07-09 Thread Gilberto
Waiting for it as well: http://www.youtube.com/user/GoogleDevelopers/videos?query=gwt http://www.youtube.com/user/GoogleDevelopers/videos?query=%22google+web+toolkit%22 (Couldn't find a way to make OR queries in YouTube =/) On Friday, July 6, 2012 4:57:28 AM UTC-3, Nicolas Antoniazzi wrote:

Re: [gwt-contrib] Bean Validation status / future plans?

2012-04-08 Thread Gilberto Pacheco Gallegos
There is another project that seems to be more advanced than current status: http://code.google.com/p/gwt-validation/ ¿Is there a chance to include it's work? -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >