Re: Can I create GWT Widget in javascript code?

2021-03-02 Thread lofid...@gmail.com
I build a simple example: https://github.com/lofidewanto/gwt-widget-jsinterop I also found some answer in StackOverflow but it's all Java based (see the README above). What I understood is that the Widget should be called from a pure JS (VueJS or whatever JS). - Calculator.java

Re: GWT-apps and OAuth 2.0

2021-03-02 Thread Hamid Razoki
Ho you can use keycloak adapters , i actualy using gwt 2.5 with keycloak spring security adapter and work perfectly Le mar. 2 mars 2021 à 17:29, Luca Morettoni a écrit : > Hello, I have a quite old application that actually uses an internal > implementation to manage the user access to the

Re: Can I create GWT Widget in javascript code?

2021-03-02 Thread Thomas Broyer
I would: 1. create a new *.gwt.xml with a new EntryPoint that won't launch the GWT app but instead expose a function (using JsInterop) to "run" your module 2. that function would use receive an element ID and use RootPanel.get(id) to put the GWT UI inside (that's not the only way,

Re: GWT-apps and OAuth 2.0

2021-03-02 Thread Michael Conrad
I'm using a version of gwt-oauth2 for Google OAUTH logins in this project: https://github.com/CherokeeLanguage/AudioQualityVote. The version of gwt-oauth2 I'm using is at: https://github.com/CherokeeLanguage/gwt-oauth2 On Tue, Mar 2, 2021 at 11:28 AM Luca Morettoni wrote: > Hello, I have a

GWT-apps and OAuth 2.0

2021-03-02 Thread Luca Morettoni
Hello, I have a quite old application that actually uses an internal implementation to manage the user access to the system: a login screen that send to the server username/password and gets a token used around in the different functionalities of the application. Now a customer instead of using

Re: Can I create GWT Widget in javascript code?

2021-03-02 Thread Andrea Stocchero
Charba is a library which is wrapping CHART.JS to provide charts in GWt and J2Cl appliation and for GWT a chat can be a widget. Almost everything by JSINTEROP. https://github.com/pepstock-org/Charba/tree/master/src/org/pepstock/charba/client/gwt/widgets https://github.com/pepstock-org/Charba

Re: Can I create GWT Widget in javascript code?

2021-03-02 Thread Boris Brudnoy
Would vue-gwt (https://github.com/VueGWT/vue-gwt) help your scenario? *Boris Brudnoy* Web Software Engineer | LinkedIn | StackOverflow I created RecipeLot.com, a companion for culinary enthusiasts.

Re: Can I create GWT Widget in javascript code?

2021-03-02 Thread Zhang Alex
since now not yet! I have a large application build with gwt 2.8 + Gxt recently, other company need integration some UI into it's web application, eg: div Does JsInterop suitable my Scene Thank for your example case 在2021年3月2日星期二 UTC+8 下午4:58:00 写道: > Never wrap a Widget with JsInterop

Re: Can I create GWT Widget in javascript code?

2021-03-02 Thread lofid...@gmail.com
Never wrap a Widget with JsInterop before... but just like in this article I wrapped a Calculator with JsInterop so that afterwards I could use it from JavaScript. https://bit.ly/WebJavaStory Did you try to wrap your Widget with JsInterop? alex...@gmail.com schrieb am Dienstag, 2. März 2021