\Kendo\UI\TreeListPageableMessages

A PHP class representing the messages setting of TreeListPageable.

Methods

display

The text with the pager information. Uses kendo.format.Contains the following placeholders: - {0} - The first data item index. - {1} - The last data item index. - {2} - The total number of data items.

Returns

\Kendo\UI\TreeListPageableMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\TreeListPageableMessages();
$messages->display('value');
?>

_empty

The text that is displayed when the TreeList is empty.

Returns

\Kendo\UI\TreeListPageableMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\TreeListPageableMessages();
$messages->_empty('value');
?>

first

The tooltip of the button which goes to the first page.

Returns

\Kendo\UI\TreeListPageableMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\TreeListPageableMessages();
$messages->first('value');
?>

itemsPerPage

The label that is displayed after the drop-down list for the page size.

Returns

\Kendo\UI\TreeListPageableMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\TreeListPageableMessages();
$messages->itemsPerPage('value');
?>

last

The tooltip of the button which goes to the last page.

Returns

\Kendo\UI\TreeListPageableMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\TreeListPageableMessages();
$messages->last('value');
?>

morePages

The tooltip of the ... (ellipsis) button which appears when the number of pages is greater than the buttonCount.

Returns

\Kendo\UI\TreeListPageableMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\TreeListPageableMessages();
$messages->morePages('value');
?>

next

The tooltip of the button which goes to the next page.

Returns

\Kendo\UI\TreeListPageableMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\TreeListPageableMessages();
$messages->next('value');
?>

of

The label that is displayed before the pager input. Uses kendo.format. Contains one optional {0} placeholder which represents the total number of pages.

Returns

\Kendo\UI\TreeListPageableMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\TreeListPageableMessages();
$messages->of('value');
?>

page

The label that is displayed before the pager input.

Returns

\Kendo\UI\TreeListPageableMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\TreeListPageableMessages();
$messages->page('value');
?>

previous

The tooltip of the button which goes to the previous page.

Returns

\Kendo\UI\TreeListPageableMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\TreeListPageableMessages();
$messages->previous('value');
?>

refresh

The tooltip of the Refresh button.

Returns

\Kendo\UI\TreeListPageableMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\TreeListPageableMessages();
$messages->refresh('value');
?>
In this article
Not finding the help you need?