Wednesday, March 11, 2020

gwt-serviceworker-linker

Hi,

With the pending removal of Appcache from the major browsers, I have deprecated the Appcache libraries I maintained and put together an extremely minimal service-worker linker for GWT that did something roughly similar to Appcache if anyone needs it. 

It is available at:

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/CACiKNc41vcRwZVG8AZKZx46znR26UVYV8mvRy9CNBB4hguTvzQ%40mail.gmail.com.

Re: What do you need to know? For C++ programmer

Me too

I use to developer by GWT.
GWT is useful in client side and server side both.
Because to use java in both.
Java is object oriented programming .
Java have full useful librally.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/f83702da-97c0-4bff-a0f8-d96750d32431%40googlegroups.com.

Re: What do you need to know? For C++ programmer

Jan,  YES, GWT is still alive.  E.g., see midasmed.com, our new medical diagnosis app, beta test version. The UI is entirely GWT, and it uses responsive design to run on any device.
Dan Jones,
Eureka Clinical Computing

On Mon, Mar 9, 2020 at 7:04 AM Jan Istocko <istocko@gmail.com> wrote:
Smartgwt12p with get 2.8.2

Dňa pi 8. 3. 2019, 10:46 Puppy2Pet <southbayusainternational@gmail.com> napísal(a):
Just wonder is there still anybody use GWT for web apps thesedays?

----------------------------------------------------------------------------
Puppy2Pet



On Sunday, October 28, 2007 at 8:39:51 PM UTC-7, squishydonut wrote:
I have a background in C++ programming, but only very basic knowledge
of Java programming.  Could someone list a # of things that one should
know to start utilizing GWT for web apps?

Java?  JSP?  JSF?

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/CAPKohkDSWHknz%3Dy1P%2B%2Bnz1Dsos%2BLxP1BvMNO%3D9mTG5D7pucm1Q%40mail.gmail.com.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/CABTxsENebQCFJnRCcCA3hans8TaBn2nhxDgT_WNUJ5eEdh_pdQ%40mail.gmail.com.

Monday, March 9, 2020

Re: GWT DataGrid getRowElement throwing IndexOutOfBoundsException after manually setting the page

Hi Thomas,

Thanks very much for your response.  I had considered that, but had been convinced by the various logging messages I had (including the grid pager reporting the current rows) that the request to fetch the requisite rows had happened.

However, on further review (and adding the most important but previously overlooked log statement to the data row request RESPONSE processing :-/ ) it was clear that you are indeed correct and the rows had not yet been retrieved.

Thanks for again for your response and nudging me back down that path.

- Linus 

On Thursday, March 5, 2020 at 2:07:48 AM UTC-8, Thomas Broyer wrote:
It's probably a timing issue: all (most) changes to an AbstractCellTable are actually deferred to the end of the event loop (through Scheduler.scheduleFinally), so you have to defer the second part of your code (the one that calls getVisibleRange and getRowElement).
Did you try to step-by-step debug your code? (through the browser's debugger, or simply GWT.log() statements)

On Wednesday, March 4, 2020 at 6:29:40 PM UTC+1, Linus Kamb wrote:
I have a DataGrid, and I would like to display a row that is not in the currently visible row set, however, I get an indexOutOfBound Exception when I call getRowElement().

In my code, I determine in which page of results the desired row exists and I set the appropriate page with

  gridPager.setPage(showPage);

I then try to get the RowElement using the following, where showRow is the actual row index in the dataset.

  Range range = dataGrid.getVisibleRange();
 
int start = range.getStart();
 
int rowIdx = showRow - start;
 
TableRowElement row = dataGrid.getRowElement(rowIdx);

But that throws the indexOutOfBounds Exception.

I have also tried using the actual row index with the same result.

The page is properly set and displays the page of results that includes the desired row, but I am unable to get the RowElement in order to scroll the display.

Note that if the user has already manually paged to the page that includes the desired row, and as such the setPage() operation is not performed, I can successfully get the RowElement with this  method and scroll the view.

Runtime logging would indicate that the appropriate rows have been fetched.

Any insights into what I am missing or doing wrong would be most appreciated.

Thanks,
- Linus

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/96381391-6426-45c8-9530-c776001d42c1%40googlegroups.com.

Sunday, March 8, 2020

Re: What do you need to know? For C++ programmer

Smartgwt12p with get 2.8.2

Dňa pi 8. 3. 2019, 10:46 Puppy2Pet <southbayusainternational@gmail.com> napísal(a):
Just wonder is there still anybody use GWT for web apps thesedays?

----------------------------------------------------------------------------
Puppy2Pet



On Sunday, October 28, 2007 at 8:39:51 PM UTC-7, squishydonut wrote:
I have a background in C++ programming, but only very basic knowledge
of Java programming.  Could someone list a # of things that one should
know to start utilizing GWT for web apps?

Java?  JSP?  JSF?

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/CAPKohkDSWHknz%3Dy1P%2B%2Bnz1Dsos%2BLxP1BvMNO%3D9mTG5D7pucm1Q%40mail.gmail.com.

Thursday, March 5, 2020

Re: GWT DataGrid getRowElement throwing IndexOutOfBoundsException after manually setting the page

It's probably a timing issue: all (most) changes to an AbstractCellTable are actually deferred to the end of the event loop (through Scheduler.scheduleFinally), so you have to defer the second part of your code (the one that calls getVisibleRange and getRowElement).
Did you try to step-by-step debug your code? (through the browser's debugger, or simply GWT.log() statements)

On Wednesday, March 4, 2020 at 6:29:40 PM UTC+1, Linus Kamb wrote:
I have a DataGrid, and I would like to display a row that is not in the currently visible row set, however, I get an indexOutOfBound Exception when I call getRowElement().

In my code, I determine in which page of results the desired row exists and I set the appropriate page with

  gridPager.setPage(showPage);

I then try to get the RowElement using the following, where showRow is the actual row index in the dataset.

  Range range = dataGrid.getVisibleRange();
 
int start = range.getStart();
 
int rowIdx = showRow - start;
 
TableRowElement row = dataGrid.getRowElement(rowIdx);

But that throws the indexOutOfBounds Exception.

I have also tried using the actual row index with the same result.

The page is properly set and displays the page of results that includes the desired row, but I am unable to get the RowElement in order to scroll the display.

Note that if the user has already manually paged to the page that includes the desired row, and as such the setPage() operation is not performed, I can successfully get the RowElement with this  method and scroll the view.

Runtime logging would indicate that the appropriate rows have been fetched.

Any insights into what I am missing or doing wrong would be most appreciated.

Thanks,
- Linus

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/5cf0da83-3043-4de7-b0a4-e44b9f3f5386%40googlegroups.com.

Wednesday, March 4, 2020

GWT DataGrid getRowElement throwing IndexOutOfBoundsException after manually setting the page

I have a DataGrid, and I would like to display a row that is not in the currently visible row set, however, I get an indexOutOfBound Exception when I call getRowElement().

In my code, I determine in which page of results the desired row exists and I set the appropriate page with

  gridPager.setPage(showPage);

I then try to get the RowElement using the following, where showRow is the actual row index in the dataset.

  Range range = dataGrid.getVisibleRange();
 
int start = range.getStart();
 
int rowIdx = showRow - start;
 
TableRowElement row = dataGrid.getRowElement(rowIdx);

But that throws the indexOutOfBounds Exception.

I have also tried using the actual row index with the same result.

The page is properly set and displays the page of results that includes the desired row, but I am unable to get the RowElement in order to scroll the display.

Note that if the user has already manually paged to the page that includes the desired row, and as such the setPage() operation is not performed, I can successfully get the RowElement with this  method and scroll the view.

Runtime logging would indicate that the appropriate rows have been fetched.

Any insights into what I am missing or doing wrong would be most appreciated.

Thanks,
- Linus

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/95a0c8e4-c5c1-447e-b2e2-604c9dd4ff96%40googlegroups.com.