Tile
The Tile Class provides properties, methods, and events to interface with the HTML tags generated by the <silk:Tile>
tag.
Kind: global class
Properties
$tile
Object
jQuery object referencing the Tile HTML tag.
Methods and Event
new Tile(id, option)
Returns a Tile instance.
id
String
Unique identifier.
option
Object
Object containing the configuration.
[option.dataSource]
String
Unique identifier of the dataProvider used to fill the Tile.
[option.columns]
String
The number of tiles to define a row's columns. All tiles will be group in rows.
[option.rowClass]
String
The CSS class used by the row div. This only works when the column property is moren than 0.
[option.content]
String
The HTML template used to generate the
[option.rendererFn]
String
The function which re-process the generated tile's HTML.
appendCell(id)
Add a new cell to the end of the
Kind: instance method of Tile
id
The ID of the element to be added.
filterLoad(index, item)
Function which evaluates if a row should be included in the table. If true is returned the row is added, false ignores the row.
Kind: instance method of Tile
index
The record index.
item
The row object.
getID()
Returns the component's' unique identifier.
Kind: instance method of Tile
load()
The method which load the data to fill the Tile.
Kind: instance method of Tile
on
Extends the "on" method from the eventManager Class.
Kind: instance property of Tile
eventName
String
The event's name.
eventFunction
function
The function to be triggered.
prependCell(id)
Add a new cell to the beggining of the
Kind: instance method of Tile
id
The ID of the element to be added.
on:afterLoad
Event triggered after the table content is loaded. Created with the Tile.on("afterLoad", function(){})
method.
Kind: event emitted by Tile
on:beforeLoad
Event triggered before the table content is loaded. Created with the Tile.on("beforeLoad", function(){})
method.
Kind: event emitted by Tile
on:click (item, $content, dpIndex, rowIndex, event)
Event triggered when a tile cell is clicked. Created with the Tile.on("click", function(item,$content,dpIndex,rowIndex,event){})
method.
Kind: event emitted by Tile
item
Object
The item object from the dataSource of the clicked cell.
$content
Object
The JQuery reference to the clicked cell.
dpIndex
Integer
The dataProvider index.
rowIndex
Integer
The cell Index.
event
Object
The click javascrit event object.
on:click (item, $content, dpIndex, cellIndex, event)
Event triggered when a tile is clicked. Created with the Tile.on("click", function(colIndex, dpIndex, mouseEvent){})
method.
Kind: event emitted by Tile
item
Object
The item rendering a tile
$content
JQuery
The JQuery object of the selected
dpIndex
Integer
The DataProvider index of the selected
cellIndex
integer
The cell index of the selected
event
Object
The mouse event object.
Last updated