firebugLite - Firebug Lite
Enables Firebug Lite on the runtime page.
Category
Extension LibrarySyntax
<xe:firebugLite attributes>content</xe:firebugLite>
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. |
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 variablefirebug
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>