Name

linkdialog

Synopsis

LZX: linkdialog
JavaScript: linkdialog
Type: Class
Access: public
Topic: Incubator.Rich Text Editor
Declared in: lps/components/incubator/rich-text/linkdialog.lzx

Description

A dialog to let the user set a hyperlink on the currently selected text.

Superclass Chain

node (LzNode) » view (LzView) » linkdialog

Known Subclasses

Details

Properties (2)

editor
<attribute name="editor" value="${grte}" />
public var editor;
Reference to the associated richtexteditor. (default: grte)
ystart
<attribute name="ystart" value="110" />
public var ystart;

Methods (3)

hide()
<method name="hide" />
public function hide();
hide slides out the dialog
makelink()
<method name="makelink" />
public function makelink();
makelink Assigns link and standard link formatting to text selected in the editor.
show()
<method name="show" />
public function show();
show slides in the dialog.

LZX Synopsis

<class name="linkdialog" extends=" LzView ">
  <attribute name=" editor " value="${grte}" />
  <attribute name=" ystart " value="110" />
  <method name=" hide " />
  <method name=" makelink " />
  <method name=" show " />
</class>

JavaScript Synopsis

public linkdialog extends  LzView  {
  public var editor ;
  public var ystart ;
  prototype public function hide ();
  prototype public function makelink ();
  prototype public function show ();
}