content
Gets or sets the tile content(text/html) or the selector of the dom element which contains the content.
- 型
- string
constructor(opts?: any): Tile
Initializes a new Tile.
JavaScript object containing initialization data for the layoutitem.
Gets or sets the tile content(text/html) or the selector of the dom element which contains the content.
Gets the parent which owns this layoutitem.
It could be a Group or a LayoutBase.
activate(): void
Acitvates the current tile.
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.
beginMove(): void
Begins to be moved.
deactivate(): void
Deacitvates the current tile.
dispose(fullDispose?: boolean): void
オブジェクトを破棄します。
A boolean value decides wehter to keep the current status when disposing. If true, all the current status will be cleared. Otherwise, keep the current status.
draw(): void
Draws the tile.
endMove(): void
The moving is to be ended.
initialize(options: any): void
Initializes the object by copying the properties from a given object.
Object that contains the initialization data.
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.
render(container?: HTMLElement): HTMLElement
Renders the layoutitem in the specified container.
the container element where the layoutitem renders in.
Defines a class which represents the minimum layout item.