\Kendo\UI\NotificationPosition
A PHP class representing the position setting of Notification.
Methods
bottom
Determines the pixel position of the first popup notification with regard to the viewport's bottom edge.
Returns
\Kendo\UI\NotificationPosition
Parameters
$value float
Example
<?php
$position = new \Kendo\UI\NotificationPosition();
$position->bottom(1);
?>
left
Determines the pixel position of the first popup notification with regard to the viewport's left edge.
Returns
\Kendo\UI\NotificationPosition
Parameters
$value float
Example
<?php
$position = new \Kendo\UI\NotificationPosition();
$position->left(1);
?>
pinned
Determines whether the popup notifications will move together with the other page content during scrolling.
Returns
\Kendo\UI\NotificationPosition
Parameters
$value boolean
Example
<?php
$position = new \Kendo\UI\NotificationPosition();
$position->pinned(true);
?>
right
Determines the pixel position of the first popup notification with regard to the viewport's right edge.
Returns
\Kendo\UI\NotificationPosition
Parameters
$value float
Example
<?php
$position = new \Kendo\UI\NotificationPosition();
$position->right(1);
?>
top
Determines the position of the first popup notification with regard to the viewport's top edge. Numeric values are treated as pixels.
Returns
\Kendo\UI\NotificationPosition
Parameters
$value float
Example
<?php
$position = new \Kendo\UI\NotificationPosition();
$position->top(1);
?>