Gantt PHP Class Overview

The Kendo UI Gantt for PHP is a server-side wrapper for the Kendo UI Gantt widget.

Getting Started

The Basics

There are two ways to bind a Kendo UI Gantt for PHP:

  • Locally—Local binding binds the Gantt to a PHP array.
  • Remotely—During remote binding the Gantt makes AJAX requests and is bound to the JSON result.

Configuration

Below are listed the steps for you to follow when configuring the Kendo UI Gantt for local binding.

Step 1 Make sure you followed all the steps from the introductory article on Telerik UI for PHP—include the autoloader, JavaScript, and CSS files.

Step 2 Create an array to which the Gantt will be bound.

    <?php
    $tasksData = array(
         array(
            'id' => 1,
            'orderId' => 0,
            'parentId' => null,
            'title' => 'Task 1',
            'percentComplete' => 0.4,
            'start' => new DateTime('2013/6/13 00:00'),
            'end' => new DateTime('2013/6/13 00:30')
        ),
        array(
            'id' => 2,
            'orderId' => 1,
            'parentId' => null,
            'title' => 'Task 2',
            'percentComplete' => 0.6,
            'start' => new DateTime('2013/6/13 14:00'),
            'end' => new DateTime('2013/6/13 15:30')
        )
    );
    ?>

Step 3 Create an array of dependencies to which the Gantt will be bound.

    <?php
    $dependenciesData = array(
         array(
            'id' => 1,
            'predecessorId' => 1,
            'successorId' => 2,
            'type' => 1
        )
    );
    ?>

Step 4 Create a DataSource for the tasks and set its data.

    <?php
    $tasksDataSource = new \Kendo\Data\DataSource();
    $tasksDataSource->data($tasksData);
    ?>

Step 5 Create a DataSource for the dependencies and set its data.

    <?php
    $dependenciesDataSource = new \Kendo\Data\DataSource();
    $dependenciesDataSource->data($dependenciesData);
    ?>

Step 6 Create a Gantt, set its dataSource, and the dataSource of the dependencies.

    <?php
    $gantt = new \Kendo\UI\Gantt('gantt');
    $gantt->dataSource($tasksDataSource)
        ->dependencies($dependenciesDataSource);
    ?>

Step 7 Output the Gantt by echoing the result of the render method.

    <?php
    echo $gantt->render();
    ?>

Event Handling

You can subscribe to all Gantt events.

Specify Function Names

The example below demonstrates how to subscribe for events by specifying a JavaScript function name.

<?php
$gantt = new \Kendo\UI\Gantt('gantt');

// The 'gantt_dataBound' JavaScript function will handle the 'dataBound' event of the gantt
$gantt->dataBound('gantt_dataBound');

echo $gantt->render();
?>
<script>
function gantt_dataBound() {
    // Handle the dataBound event
}
</script>

Provide Inline Code

The example below demonstrates how to provide inline JavaScript code.

<?php
$gantt = new \Kendo\UI\Gantt('gantt');

// Provide inline JavaScript code that will handle the 'dataBound' event of the gantt
$gantt->dataBound('function() { /* Handle the dataBound event */ }');

echo $gantt->render();
?>

Reference

Client-Side Instances

You can reference the client-side Kendo UI Gantt instance via jQuery.data(). Once a reference is established, use the Gantt API to control its behavior.

<?php
$gantt = new \Kendo\UI\Gantt('Gantt');
echo $gantt->render();
?>
<script>
$(function() {
    // The constructor parameter is used as the 'id' HTML attribute of the gantt
    var gantt = $("#Gantt").data("kendoGantt");
});
</script>

See Also

In this article