Re: module.nocache.js generated with same timestamp as module.gwt.xml

2015-02-18 Thread Rob Newton
I have just noticed this same issue, and am glad to have found Dop Sun's post here. Thanks Thomas for the link to the proposed path. I notice on Jan 6 the patch was merged, but then reverted later that day, because *need to update some tests before committing this change*. I hope this hasn't

Re: Production build takes 25% longer on 2.8 compared to 2.7

2017-03-19 Thread Rob Newton
I have been having a similar experience. GWT 2.8 production builds take roughly 25% longer compared to 2.7. On Wednesday, March 15, 2017 at 12:02:12 AM UTC+11, shimmeri...@gmail.com wrote: > > Hi, > > I am migrating our GWT projects from 2.7 to 2.8 and noticed that on > average production

Re: CellList refreshed only after mouse move

2017-04-08 Thread Rob Newton
I have encountered this problem myself. When the new data arrives, rather than updating the CellList/Grid immediately, defer the update until the current event loop has completed. For example: private static void setRowDataDeferred( final DataGrid grid, final int start, final

Re: issue with gwt RPC

2018-04-26 Thread Rob Newton
Fred, It's not a problem during compile time. It's a runtime issue. You need to configure Tomcat to start with more memory. For example, in my installation, there is a file /opt/tomcat/bin/setenv.sh, with the following line: CATALINA_OPTS=" -server -Xms128M -Xmx512M" On Wednesday, January

Re: Elemento, maven config to force template implementation class regen

2018-03-26 Thread Rob Newton
Trying mvn process-sources or mvn generate-sources does not help. On Monday, March 26, 2018 at 8:25:18 PM UTC+11, Ahmad Bawaneh wrote: > > try *mvn process-sources* > > On Monday, March 26, 2018 at 10:19:26 AM UTC+2, Rob Newton wrote: >> >> Hi, >> >> When I

Elemento, maven config to force template implementation class regen

2018-03-26 Thread Rob Newton
Hi, When I edit an Elemento template HTML file and do a mvn compile it won't regenerate the template implementation class source file. Is there some maven pom config and/or command I can use to say rerun the elemento annotation processor without doing a mvn clean or touching the template

Re: Elemento, maven config to force template implementation class regen

2018-03-28 Thread Rob Newton
Thankyou Thomas, that is good to know. On Tuesday, March 27, 2018 at 8:36:22 PM UTC+11, Thomas Broyer wrote: > > > > On Monday, March 26, 2018 at 10:19:26 AM UTC+2, Rob Newton wrote: >> >> Hi, >> >> When I edit an Elemento template HTML file and do a

Re: UnableToCompleteException

2019-04-02 Thread Rob Newton
I wonder if the GWT unit cache is corrupted? Try removing directories named gwt-unitCache and/or /tmp/gwt-cache-* (linux). On Tuesday, April 2, 2019 at 6:32:10 AM UTC+11, Andrew Buck wrote: > > I am getting an exception when trying to use super dev mode that I don't > understand. Stack trace

Re: Is this project active?

2019-05-30 Thread Rob Newton
I can sympathise with some of what Bob is saying. >From what I can gather there is actually a great flux of activity going on behind the scenes by parts of the community. The main players in moving GWT forward appear to be half-a-dozen or so companies who use GWT greatly, and some

Re: A Short GWT JsInterop Article for Beginners

2019-06-03 Thread Rob Newton
Nice! On Tuesday, June 4, 2019 at 6:21:32 AM UTC+10, Dr. Lofi Dewanto wrote: > > Hi All, > > I wrote a short article to introduce GWT and JsInterop for beginners, hope > to see more people using GWT: http://bit.ly/WebJavaStory > > Enjoy, thanks, > Lofi > -- You received this message because

Re: DisclosurePanel

2019-05-22 Thread Rob Newton
When you create the DisclosurePanel you can provide the text for the header: DisclosurePanel(java.lang.String headerText) On Wednesday, May 22, 2019 at 3:59:16 PM UTC+10, naaser ahmed wrote: > > Hello, > > I am trying to make my website compatible with Accessibility and running > into

Re: [ANN] (Unofficial) Elemental2 2.26 release

2019-10-16 Thread Rob Newton
OK I was wrong. I thought I was using 2.26, but I am using other maven dependencies (elemento) which depend on 1.0.0-RC1, and that is having precedence over 2.26. On Thursday, October 17, 2019 at 12:49:27 PM UTC+11, Rob Newton wrote: > > Hristo, > > I am using realityforge's elemen

Re: [ANN] (Unofficial) Elemental2 2.26 release

2019-10-16 Thread Rob Newton
Hristo, I am using realityforge's elemental2 version 2.26 with GWT 2.8.2 and it is fine. I understand what you would use jsinterop_base_version for (the jsinterop-base artifact version), but what are you using jsinterop_version for? 1.0.2-p1 looks too recent, and will require GWT 2.9 when

Re: GWT goodies!

2019-10-17 Thread Rob Newton
Hristo, Thanks for that. I had not heard of Tabulator -- it could be useful. Cheers! On Friday, October 18, 2019 at 4:56:27 AM UTC+11, Hristo Stoyanov wrote: > > Hello all, > I have been maintaining a few GWT projects, mostly JsInterop wrappers > around popular and useful JS libs that I

looking for JsInterop information

2019-11-11 Thread Rob Newton
Hi, I am looking for info on how to use JsInterop where arrays [], Lists and other collections are involved. Besides this section of the GWTProject.org site: http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsJsInterop.html

Re: Upgrading from 2.8.1 to 2.9.0 yields "...type not found, or there are compile errors..."?!?

2021-12-06 Thread Rob Newton
It looks like the GWT compiler cannot find the source .java file for that class, which it will need. Perhaps it is in a directory that is not covered by the tag in your module.gwt.xml file? On Tuesday, December 7, 2021 at 3:02:09 AM UTC+11 mmo wrote: > We are trying to migrate a GWT

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

2022-06-30 Thread Rob Newton
Yes it seems that you need to run it in a separate servlet container, but it doesn't have to be Tomcat. You can use Jetty so long as it is fairly recent (unlike the old version embedded in GWT dev mode). On Friday, July 1, 2022 at 4:57:50 AM UTC+10 ora...@gmail.com wrote: > I am not sure if