Event

parasql. Event

A parasql.Event object can be emitted by various classes. To register to receive these events, see parasql.widget.AbstractWidget#addEventListener or use the Events... option on the tool bar. All parasql.widget.FieldWidget objects emit "change" events in response to user changes. All parasql.widget.TextFieldWidget objects also emit "keypress" events in response to user interaction. All parasql.widget.HTMLWidget objects emit "render" events when they are ready to have their contents rendered. All parasql.widget.ButtonWidget objects emit "click" events when they are clicked. All parasql.widget.ReportWidget objects emit "dblclick" events when a row is dbl clicked.

Extends

  • Object

Members

(readonly) domEvent :Event

If this parasql.Event was triggered by a DOM Event, this will be set to the original DOM event.

Description:
  • If this parasql.Event was triggered by a DOM Event, this will be set to the original DOM event.

If this parasql.Event was triggered by a DOM Event, this will be set to the original DOM event.

Type:
  • Event

(readonly) target :parasql.widget.AbstractWidget

The object that emitted this event.

Description:
  • The object that emitted this event.

The object that emitted this event.

Type:

(readonly) type :string

The type of this event (e.g.

Description:
  • The type of this event (e.g. change, keypress, render).

The type of this event (e.g. change, keypress, render).

Type:
  • string