Reputation: 1595
I want to know where does GWT store the generated html files because when I used firebug I can see div-elements with Id but when I search those in project, I don't find them anywhere. I see *.cached.html" but I find nothing there.
I need to change some CSS to add scroll effect.
Upvotes: 0
Views: 156
Reputation: 194
In firebug console write "document.getElementsById('myDiv');"
you can see your div element and click to result and go into your div with HTML view.
Upvotes: 0
Reputation: 64541
GWT does not generate HTML, it generates JavaScript. That JavaScript code is highly likely to create HTML elements via the DOM API or innerHTML
, but that's still JavaScript code, and not “HTML”.
Upvotes: 3