Returning an array of objects to javascript via JsInterop - how?

2018-01-02 Thread Power Droid
I have a class which is just a data storage object public class Product{ int id; String name; public Product() { } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } }

GWT and Cordova/PhoneGap - use JsInterop?

2017-12-28 Thread Power Droid
I would like to use Cordova/PhoneGap with a GWT project. I'm wondering if anyone has any pointers on how to understand the workflow I should/could use. I have seen gwt-phonegap libraries on Github, but I'm not sure if those are still something that should be considered or if I should just try

Possible to use Firebase in a GWT app?

2017-12-08 Thread Power Droid
Is it possible and/or does anyone know if any documentation exists regarding integrating Firebase with a GWT app? I'm hoping to use Firebase Auth to allow a user to login to an app with a Google account and then possibly using some Firebase Analytics. PD -- You received this message because

How to slide out a panel (similar to gwtproject.org front page)

2017-12-01 Thread Power Droid
What would be the best practice to have a panel show a little bit, but then slide out when the user mouse overs the panel. I'm thinking something similar to the gwtproject.org page that has the navigation menu pop out from the left side when we mouse over it. Anyone know how this type of