Re: how to create an anchor column in a celltable

2018-08-29 Thread Josselin Bardet
Hi, You can use a custom cell to do what you want. You can look at the ButtonCell class for exemple The render() method is called for each row of the cell table, you can make your link there @see com.google.gwt.cell.client.ButtonCell Le mar. 28 août 2018 à 18:00, Ousti Driss a écrit : > Hey

Re: GWT 2.9 Questions

2018-09-05 Thread Josselin Bardet
Hi Jens, Any idea for a release date of GWT 2.x ? Will it add better support for java interface default functions ? Le mer. 5 sept. 2018 à 09:07, Jens a écrit : > GWT 2.x will not drop JSNI anytime soon, only GWT 3 will as it uses a > different Java -> JavaScript compiler internally. And yes

Re: GWT 2.9 Questions

2018-09-05 Thread Josselin Bardet
It would be nice to implement this, I'm using it a lot. I've created an issue for this: https://github.com/gwtproject/gwt/issues/9629 Le mer. 5 sept. 2018 à 14:58, Jens a écrit : > > For the interface default method problem, it is related to ui:binder way >> of using setter methods. >> > > The

Re: XSD schema for gwt xml

2018-09-10 Thread Josselin Bardet
Hi If you use eclipse (with the gwt plugin ?) you will have autocomplete for even tags or attributes Le lun. 10 sept. 2018 à 16:02, 'Jewgenij Moldawski' via GWT Users < google-web-toolkit@googlegroups.com> a écrit : > Thank you Thomas for this instant answer! > What I'm really sad for: due to

Re: GWT 2.9 Questions

2018-09-05 Thread Josselin Bardet
Hi, For the interface default method problem, it is related to ui:binder way of using setter methods. For exemple, if you have this interface: public interface TestInterface { public default void setFoo(String bar) { System.out.println(bar); } } Then this class extending a

Re: Deferred Binding - Help!

2018-09-14 Thread Josselin Bardet
Hi As far has I know (I might be wrong), the generators are executed during the compilation of the web app. So I think you can't do that without recompiling you app. If you recompile your app, with all your plugins in your classpath, you can implement a generator that will scan for Pet

Re: Upload a file gwt

2018-09-12 Thread Josselin Bardet
Hi You can use the form input name to send informations for exemple Le mer. 12 sept. 2018 à 11:59, Ousti Driss a écrit : > Thank you for your answer Paul, > Your solution seems logical, > but in my case these other data, I need it from the first submit, > these data are basically type of file

Re: Client only applications

2019-10-23 Thread Josselin Bardet
Hi, I think you can compile and deploy the static files to use it only on client side. You can make an application without async interfaces Regards Le mer. 23 oct. 2019 à 10:25, nikola a écrit : > What is the recommended way of making client only applications in GWT? > There are archetypes

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

2021-03-10 Thread Josselin Bardet
Le mer. 10 mars 2021 à 16:42, Vegegoku a écrit : > >> >> Spring: I think the thing I dislike the most about Spring is what many >> people like about it: it's an entire, wide, and fat, ecosystem. You can >> hardly use one piece of Spring without using everything else; I mean, each >> Spring piece

Re: Lambda expression with GWT 2.9

2021-03-01 Thread Josselin Bardet
Hi, AFAIK lambda expressions and java 1.8 syntax is supported since gwt 2.8 Regards Le lun. 1 mars 2021 à 13:13, Hardik Shah a écrit : > Hi All, > > Can we write lambda expression code in GWT 2.9? > With basic testing, look like it is working correctly. I search on > stackoverflow and GWT

Re: java.lang.ClassNotFoundException: javax.sql.DataSource when using GWT 2.9.0 + Java 11 combination

2022-07-01 Thread Josselin Bardet
Hello all I use legacy dev mode with a old FF17 with succes on GWT 2.10 / jdk 11. I had to overide JettyLauncher class to add "javax.sql." on the "allowedFromSystemClassLoader" variable Until now, I have no issue with this mode except this. Le jeu. 30 juin 2022 à 09:30, Thomas Broyer a écrit :

Re: Is there some description anywhere how to set up a decently usable GWT 2.10 development environment?

2022-12-14 Thread Josselin Bardet
Hi, We succesfully use the gwt 2.10 dev mode to run and debug our applications. We had to overide the JettyLauncher class to be able to run it with java > 8. What kind of issue do you have with the dev mode (with gwt plugin on eclipse) ? Le mer. 14 déc. 2022 à 18:22, mmo a écrit : > Over the