|
home / documentation / reference / statusdisplaylink
StatusDisplayLink
- Description:
- Boolean value indicating whether menu item URLs should
be displayed in the browser status bar when the user hovers over a menu item.
- Value:
- Boolean (true or false), Integer (1=true, 0=false),
or JavaScript expression that returns a boolean value.
- Applies To:
- Menu Items.
- Browser Compatibility:
- StatusDisplayLink is supported in all browsers; however,
the status display can be inconsistent in some browsers (especially older
Geckos, Opera, and Safari). It should not be relied upon.
- Comments:
- When StatusDisplayLink is set to true, the menu item's
link (from BaseURL and LinkURL) is displayed in the browser's status
bar when the user rolls over the menu item. If false no message is
displayed.
- Examples:
// Ok:
StatusDisplayLink:true,
StatusDisplayLink:0,
StatusDisplayLink:(window.thisPage=="cf")?1:0,
// if the user defined variable "thisPage" is "cf",
// StatusDisplayLink is true
// Incorrect:
StatusDisplayLink:"false", // quotes not allowed around booleans
StatusDisplayLink:"0",
StatusDisplayLink:'(window.thisPage=="cf")?1:0', // no quoted expressions
- Default:
- true
- See Also:
-
StatusDisplayBuild
|