Can you please help me creating my custom widget using
GWT 2.8 and
GWT Polymer Elements 1.7.0.wanted to create custom my custom element i.e. html file. now Can I use this custom element to create GWT Widget, Similar to what vaadin does:
public class PaperCheckbox extends PolymerWidget {
/**
* Default Constructor.
*/
public PaperCheckbox() {
this("");
}
.........
......
}
we have paper-checkbox.html in bower_component.
Now I have my own : custom-element.html Now how I can create widget out of it:
As I need to register my custom element, I am not sure how that will be done.
Thanks,
Gaurav