You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

installing-other.adoc 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. title: Installing Other Tools
  3. order: 200
  4. layout: page
  5. ---
  6. = Installing Other Tools
  7. We recommend using a browser with either integrated or external development tools.
  8. At least Mozilla Firefox and Google Chrome have an integrated web inspector, which supports inspecting the DOM structure of a web page, as well as CSS styles and debug JavaScript execution.
  9. [[installing.other.firefox]]
  10. == Firefox and Firebug
  11. While Firefox has an integrated web inspector, the Firebug inspector has some additional features.
  12. [[installing.other.firefox.firebug]]
  13. === Using Firebug with Vaadin
  14. After installing Firefox, use it to open
  15. link:http://www.getfirebug.com/[http://www.getfirebug.com/]. Follow the
  16. instructions on the site to install the latest stable version of Firebug
  17. available for the browser. You may need to allow Firefox to install the plugin
  18. by clicking the yellow warning bar at the top of the browser window.
  19. After Firebug is installed, it can be enabled at any time from the Firefox
  20. toolbar. <<figure.firebug.calc>> shows Firebug in action.
  21. [[figure.firebug.calc]]
  22. .Firebug Debugger for Firefox
  23. image::img/firebug.png[scaledwidth=100%]
  24. The most important feature in Firebug is inspecting HTML elements. Right-click
  25. on an element and select [guilabel]#Inspect Element with Firebug# to inspect it.
  26. In addition to HTML tree, it also shows the CSS rules matching the element,
  27. which you can use for building themes. You can even edit the CSS styles live, to
  28. experiment with styling.