addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void
このControl が所有する要素にイベントリスナーを追加します。
コントロールは、アタッチされているリスナーとそのハンドラのリストを保持し、コントロールが破棄されているときにそれらを簡単に削除すること ができます(dispose と removeEventListener メソッドを参照してください)。
イベントリスナーを削除しないと、メモリリークが発生する可能があります。
Target element for the event.
String that specifies the event.
Function to execute when the event occurs.
Whether the listener is capturing.
dispose(fullDispose?: boolean): void
オブジェクトを破棄します。
If true, all the related resources are disposed.
removeEventListener(target?: EventTarget, type?: string, fn?: any, capture?: boolean): number
このControl が所有する要素にアタッチされている1つまたは複数のイベントリスナーを解除します。
Target element for the event. If null, removes listeners attached to all targets.
String that specifies the event. If null, removes listeners attached to all events.
Handler to remove. If null, removes all handlers.
Whether the listener is capturing. If null, removes capturing and non-capturing listeners.
Dashboardlayoutの使い捨てオブジェクトの基本クラス。
このオブジェクトは、DOM要素のイベントをアタッチおよび削除するための一連のメソッドも提供します。