Re: GWT history with push state

2020-10-19 Thread Vegegoku
JSNI is deprecated, you can use the browser state API with pushState . You can also check domino-history which a lightweight wrapper around the pushState. On Friday, October 16,

Re: GWT history with push state

2020-10-15 Thread Craig Mitchell
As Tomas said, not directly with History. It's simple JSNI though: public static native void updateURL(String newUrl) /*-{ $wnd.history.pushState(newUrl, "", newUrl); }-*/; public static native void initialise() /*-{ $wnd.onpopstate = $entry(function(e) {

Re: GWT history with push state

2020-10-05 Thread Thomas Broyer
On Saturday, October 3, 2020 at 1:00:32 PM UTC+2, jhon tonini wrote: > > Is possible to use push state in GWT history (Es. /users, /newuser) > instead of "#" ? Not GWT History directly, but if you're using Places then you can use a Historian that uses pushState *inste

Re: GWT history with push state

2020-10-04 Thread 'Tino D.' via GWT Users
>> On Sat, Oct 3, 2020 at 7:00 AM jhon tonini wrote: >> >>> Is possible to use push state in GWT history (Es. /users, /newuser) >>> instead of "#" ? >>> >>> >>> -- >>> You received this message because you are subscr

Re: GWT history with push state

2020-10-03 Thread jhon tonini
the use of hash less URLs. > > Not sure about the Domino-Kit stuff > > > On Sat, Oct 3, 2020 at 7:00 AM jhon tonini wrote: > >> Is possible to use push state in GWT history (Es. /users, /newuser) >> instead of "#" ? >> >> >> -- >> You re

Re: GWT history with push state

2020-10-03 Thread Michael Conrad
Have you looked at "nalu"? https://github.com/NaluKit/nalu Starting with version 1.1.0 Nalu supports the use of hash less URLs. Not sure about the Domino-Kit stuff On Sat, Oct 3, 2020 at 7:00 AM jhon tonini wrote: > Is possible to use push state in GWT history (Es. /us

GWT history with push state

2020-10-03 Thread jhon tonini
Is possible to use push state in GWT history (Es. /users, /newuser) instead of "#" ? -- 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 t