Tasks Overview

The KendoReact Scheduler components transforms the provided data collection into Task components when current active view is AgendaView.

ninja-iconThe Tasks are part of KendoReact, a professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.Start Free Trial

Importing the Default Tasks

The default task, viewTask and editTask are contained in the @progress/kendo-react-scheduler package:

jsx
    // ES2015 module syntax
    import { SchedulerTask, SchedulerViewTask, SchedulerEditTask } from '@progress/kendo-react-scheduler';
jsx
    // CommonJS format
    const { SchedulerTask, SchedulerViewTask, SchedulerEditTask } = require('@progress/kendo-react-scheduler');

Task Composition

The Task composition is really close in terms of structure to the Item Composition and all rules from the Item apply here.

Providing Custom Task

To customize a specific part of the Task tree, provide the corresponding task, viewTask or editTask property to either the Scheduler or the AgendaView.

Currently the tasks support only the remove editing method, but we will be increasing the number of editing methods for the SchedulerEditTask component.

The following example demonstrates basic customization of the SchedulerTask component.

Change Theme
Theme
Loading ...