Re: Graphical javascript objects implemented to GWT

2010-03-19 Thread Jan Ehrhardt
First create a subclass of Widget to wrap your graphical object as a GWT Widget. Assumed that your graphical object requires a DIV element, where it's created on, do the following in your Widget's constructor: DivElement element = Document.get().createDiv(); makeMyGraphicalObject(element);

Graphical javascript objects implemented to GWT

2010-03-18 Thread yann menesguen
Hello, I've a problem : I've got a .js graphical object (coverflow) that I would like to integrate into a GWT project. How is it possible with JSNI ? How can I add it into a container to show it on my browser ? I'm sorry I'm a new adept of GWT and I don't have all the technical experience...