Re: A new article about GWT and IndexedDB with well known Design Patterns

2020-10-30 Thread Lars
Simple remove all the website data (from medium), so cookies and local storage, and try again :-) -- 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-toolki

Re: A new article about GWT and IndexedDB with well known Design Patterns

2020-10-29 Thread lofid...@gmail.com
That's wyrd, here is the direct link: https://lofidewanto.medium.com/using-indexeddb-on-web-browser-with-well-known-design-patterns-b338b4ab05a8 kool...@gmail.com schrieb am Donnerstag, 29. Oktober 2020 um 14:51:21 UTC+1: > Not sure that leads anywhere. I'm interested in tha

Re: A new article about GWT and IndexedDB with well known Design Patterns

2020-10-29 Thread Thomas Broyer
On Wednesday, October 28, 2020 at 11:11:24 PM UTC+1, lofid...@gmail.com wrote: > > A new article about GWT and IndexedDB with known Design Patterns, enjoy > reading: http://bit.ly/GwtIndexedDBDesignPatterns Shouldn't your repository be async? Maybe returning promises? (fwi

Re: A new article about GWT and IndexedDB with well known Design Patterns

2020-10-29 Thread Juan Pablo Gardella
Thanks Lofi!! On Wed, 28 Oct 2020 at 19:11, lofid...@gmail.com wrote: > A new article about GWT and IndexedDB with known Design Patterns, enjoy > reading: http://bit.ly/GwtIndexedDBDesignPatterns > > Enjoy reading, thanks. > Lofi > > -- > You received this message becau

A new article about GWT and IndexedDB with well known Design Patterns

2020-10-28 Thread lofid...@gmail.com
A new article about GWT and IndexedDB with known Design Patterns, enjoy reading: http://bit.ly/GwtIndexedDBDesignPatterns Enjoy reading, thanks. Lofi -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this grou

New Article Elemental2 IndexedDB GWT

2020-09-15 Thread lofid...@gmail.com
Hi All, as promised here is the new article about GWT Elemental2 and IndexedDB: *"Using IndexedDB in Web Browser — All in Java with Mrs. Gwitany and Dr. Jackl" * http://bit.ly/GWTJ2CLIndexedDB Enjoy reading! Lofi -- You received this message because you are subscribed to the Goo

Re: elemental2 indexeddb example?

2019-01-28 Thread Thomas Broyer
On Monday, January 28, 2019 at 12:49:41 AM UTC+1, rhodebump wrote: > > Thanks, I did make some progress. I dug around a little in the javadoc > and found the IndexedDbGlobal, which I was able to use to create a new > database. > > > elemental2.indexeddb.IDBFactory inde

Re: elemental2 indexeddb example?

2019-01-27 Thread rhodebump
Thanks, I did make some progress. I dug around a little in the javadoc and found the IndexedDbGlobal, which I was able to use to create a new database. elemental2.indexeddb.IDBFactory indexedDB = elemental2.indexeddb.IndexedDbGlobal.indexedDB; elemental2.indexeddb.IDBOpenDBRequest

Re: elemental2 indexeddb example?

2019-01-27 Thread Thomas Broyer
Elemental2 API map directly to the native browser APIs, so you'll start with IndexedDBGlobal.indexedDB and walk your way almost exactly like you'd do in JS. Javadoc can be found here fwiw: https://javadoc.io/doc/com.google.elemental2/elemental2-indexeddb/1.0.0-RC1 On Sunday, Januar

elemental2 indexeddb example?

2019-01-26 Thread rhodebump
I am interested in using indexeddb from within GWT. I found the following library that indicates that it provides indexeddb support https://github.com/google/elemental2 Does anyone have an example of opening a database? *Thanks,* *Phillip* -- You received this message because you are

Re: Can we use GWT code with IndexedDB to provide offline support in browsers

2013-08-26 Thread Michael Prentice
upport using my GWT > code on browsers. Currently I have implemented it on google chrome via > WebSql. But Websql is not supported on firefox and IE so I need to migrate > by IndexedDB. Is there any library available for the same?? Please help > -- You received this message because y

Can we use GWT code with IndexedDB to provide offline support in browsers

2013-08-23 Thread NITIN PANDEY
Hi, I have an issue is that I have to provide offline support using my GWT code on browsers. Currentl I have implemented it on google chrome via WebSql. But Websql is not supported on firefox and IE so I need to migrate by IndexedDB. Is there any library availible for the same?? Please help

Re: IndexedDb

2012-10-24 Thread Manuel Carrasco Moñino
Have you try this http://code.google.com/p/indexeddb-gwt/wiki/HowTo ? On Mon, Oct 22, 2012 at 10:56 PM, Twentyseven wrote: > Hello, > > I did some test with local and session storage with GWT but it's very > limited in size. > I'd like to use IndexedDb but there'

IndexedDb

2012-10-22 Thread Twentyseven
Hello, I did some test with local and session storage with GWT but it's very limited in size. I'd like to use IndexedDb but there's no "native" API implemented in GWT. I've saw Elemental in GWT 2.5 but it seems to be experimental. Is there a mature project that

Re: JSNI Return Results from IndexedDB Get() call?

2011-05-10 Thread David E.
ive static com.google.gwt.core.client.JsArray getItems() /*-{ var request = mozIndexedDB.open("AKF"); request.onerror = function(event) { $wnd.alert("There was an Error opening IndexedDB!"); }; requ

JSNI Return Results from IndexedDB Get() call?

2011-05-10 Thread David E.
I'm trying to get a Java object back from an IndexedDB get() call via a JSNI method. I can't figure it out, code is below, any help is appreciated. I think because this code is RPC in nature, i.e. it does a call and you wait for the success or error to come back that maybe has somet

GWT indexedDB API

2011-05-09 Thread David E.
Is there going to be an indexedDB API for GWT anytime soon? I went to : http://code.google.com/p/gwt-indexeddb/ It looks like there is nothing there? Are we supposed to role are own? Thanks, David -- You received this message because you are subscribed to the Google Groups "Googl