\Kendo\UI\TileLayoutContainer

A PHP class representing the container setting of TileLayoutContainers.

Methods

bodyTemplate

The template which renders as content for the tile item.

Returns

\Kendo\UI\TileLayoutContainer

Parameters

$value string|\Kendo\JavaScriptFunction

Example - using string

<?php
$container = new \Kendo\UI\TileLayoutContainer();
$container->bodyTemplate('value');
?>

Example - using \Kendo\JavaScriptFunction

<?php
$container = new \Kendo\UI\TileLayoutContainer();
$container->bodyTemplate(new \Kendo\JavaScriptFunction('function() { }'));
?>

colSpan

A value that determines how many columns will the tile item span.

Returns

\Kendo\UI\TileLayoutContainer

Parameters

$value float

Example

<?php
$container = new \Kendo\UI\TileLayoutContainer();
$container->colSpan(1);
?>

Holds the configuration settings for the header.

Returns

\Kendo\UI\TileLayoutContainer

Parameters

$value \Kendo\UI\TileLayoutContainerHeader|array

Example - using \Kendo\UI\TileLayoutContainerHeader

<?php
$container = new \Kendo\UI\TileLayoutContainer();
$header = new \Kendo\UI\TileLayoutContainerHeader();
$template = 'value';
$header->template($template);
$container->header($header);
?>

Example - using array

<?php
$container = new \Kendo\UI\TileLayoutContainer();
$template = 'value';
$container->header(array('template' => $template));
?>

rowSpan

A value that determines how many rows will the tile item span.

Returns

\Kendo\UI\TileLayoutContainer

Parameters

$value float

Example

<?php
$container = new \Kendo\UI\TileLayoutContainer();
$container->rowSpan(1);
?>
In this article
Not finding the help you need?