View HTML Directly?

Hello,

Is there any way to directly view the HTML that’s generated by Vaadin? When I view the page source in my browser, all I see is a div “shortcut” for the page content itself:


<div id="ProjectSearch-496609791" class="v-app v-app-loading v-theme-reindeer v-app-ProjectsearchApplication" ></div>

Thanks

Hi,

The “show page source code” functionality in browsers simply shows the initially loaded HTML page, not the complete HTML content that is built dynamically with JavaScript.

You can use the Firebug plugin for Firefox to view the complete HTML tree. There are similar tools for other browsers as well.

I use the developer tools in Chrome for this purpose, regularly.

Marko, Chris,

Thank you both