firebugLite - Firebug Lite

Enables Firebug Lite on the runtime page.

Category

Extension Library

Syntax

<xe:firebugLite attributes>content</xe:firebugLite>
Table 1. Essential properties
Property Description
id Defaults to firebugLite1, firebugLite2, and so on.
url Specifies the location of the Firebug Lite script. Defaults to the script packaged with the Extension Library.
Table 2. All properties
Category Properties
basics binding, id, loaded, rendered, rendererType, url
styling disableTheme, themeId

Usage

Firebug Lite is a debugger for web pages. See http://getfirebug.com/firebuglite.

Typically you place this control at the top of a page. If you use a custom control with an application layout, put this control at the top of the custom control.

Examples

This page enables Firebug Lite if the value of the session scope variable firebug is true.
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" xmlns:xe="http://www.ibm.com/xsp/coreex">
	<xe:firebugLite loaded="${javascript:sessionScope.firebug==true}"></xe:firebugLite>
...
</xp:view>