This library provides a range of utility classes.
Install the latest version using composer require riesenia/utility
Or add to your composer.json file as a requirement:
{
"require": {
"riesenia/utility": "dev-master"
}
}Helpers simplifying usage of Kendo UI components.
use Riesenia\Utility\Kendo\Table;
$table = Table::create('myTableId');
// datasource can be accessed directly
$table->dataSource->addTransport('read', ['dataType' => 'json', 'url' => 'URL']);
// ... but addTransport can also be called directly on the table object
$table->addTransport('update', ['dataType' => 'json', 'url' => 'URL']);
// columns can have various types and additional options can be set
$table->addColumn('name', 'Product name')
->addColumn('price', 'Product price', 'price', ['class' => 'green'])
->addColumn('active', 'Is active?', 'checkbox')
->addColumn('stock', 'Stock', 'number');
// additional model options can be set using 'model' key
$table->addColumn('name', 'Product name', null, ['model' => ['editable' => false]]);
// you can use any custom column rendering class
// as long as it extends Riesenia\Utility\Kendo\Table\Column\Base
$table->addColumn('custom_field', 'Title', '\\Custom\\Rendering\\Class');
// link is built-in option
$table->addColumn('...', '...', '...', ['link' => 'URL']);
// any link attributes can be set
$table->addColumn('...', '...', '...', ['link' => ['href' => 'URL', 'title' => 'TITLE']]);
// actions are usually icons with links
// icons are bootstrap classes without glyphicon prefix
$table->addAction(null, [
'icon' => 'music',
'link' => 'URL',
'title' => 'Play!'
]);
// or predifined edit or delete operation
$table->addAction('delete');
// you can use any custom column action class
// as long as it extends Riesenia\Utility\Kendo\Table\Action\Base
$table->addAction('\\Custom\\Action\\Class');
// condition is built-in option
$table->addAction('...', ['condition' => 'count > 0']);
// generally used classes can be aliased, so previous example is equivalent to
Table::alias('alias_name', '\\Custom\\Action\\Class');
$table->addAction('alias_name');
// html element (div)
echo $table;
// generated javascript
echo '<script>' . $table->script() . '</script>';use Riesenia\Utility\Kendo\Tree;
$tree = Tree::create('myTreeId');
// datasource can be accessed directly
$tree->dataSource->addTransport('read', ['dataType' => 'json', 'url' => 'URL']);
// ... but addTransport can also be called directly on the tree object
$tree->addTransport('delete', ['dataType' => 'json', 'url' => 'URL']);
// add hasChildren field (to allow tree expanding), default field name is 'hasChildren'
// but any field name can be passed (do not use 'children' as field name)
$tree->hasChildren();
// html element (div)
echo $tree;
// generated javascript
echo '<script>' . $tree->script() . '</script>';use Riesenia\Utility\Kendo\Window;
$window = Window::create('myWindowId');
// html element (div)
echo $window;
// generated javascript
echo '<script>' . $window->script() . '</script>';
// method for opening window is automatically defined
echo '<script>myWindowIdOpen("WINDOW TITLE", "URL OF THE CONTENT TO LOAD");</script>';use Riesenia\Utility\Kendo\Tabber;
$tabber = Tabber::create('myTabberId');
// adding remote tab
$tabber->addRemoteTab('First tab', 'URL');
// active tab is set using third parameter
$tabber->addRemoteTab('Second tab', 'URL', true);
// html element (div & ul)
echo $tabber;
// generated javascript
echo '<script>' . $tabber->script() . '</script>';