HTML5 on Vaadin...

Hi all,

I need to develop a component using HTML5 & embed it into an application developed using Vaadin.
The structure is as follows.

  1. There’s a top toolbar (developed with vaadin)
  2. There’s a graph (developed with HTML5)
  3. There’s a Table (developed with vaadin)
  4. There’s a bottom toolbar (developed with vaadin)

Is it possible to do such & if so, please tell me how to.

Any help is greatly appreciated.

Thanks in advance.
Asela.

Hi Asela,

I don’t really know how you have implemented the graph, but you can include any XHTML content anywhere in a Vaadin application by putting it in a Label with XHTML content mode

new Label(htmlContent, Label.CONTENT_XHTML)

HTH,
/Jonatan