\Kendo\UI\TileLayoutContainerHeader
A PHP class representing the header setting of TileLayoutContainer.
Methods
template
The template that will be rendered as a header.
Returns
\Kendo\UI\TileLayoutContainerHeader
Parameters
$value string|\Kendo\JavaScriptFunction
Example - using string
<?php
$header = new \Kendo\UI\TileLayoutContainerHeader();
$header->template('value');
?>
Example - using \Kendo\JavaScriptFunction
<?php
$header = new \Kendo\UI\TileLayoutContainerHeader();
$header->template(new \Kendo\JavaScriptFunction('function() { }'));
?>
text
The text that will be rendered as a header.
Returns
\Kendo\UI\TileLayoutContainerHeader
Parameters
$value string
Example
<?php
$header = new \Kendo\UI\TileLayoutContainerHeader();
$header->text('value');
?>