Skip to main content

createGridView

info

This functionality is available in the PRO edition only.

Description

Creates the Grid view in the scheduler

createGridView: (config: any) => void

Parameters

  • config - (required) object - the configuration object of the Grid view

Example

scheduler.createGridView({
name:"grid",
fields:[
{id:"id", label:'Book Title', width:'*', align:'right', sort:'str'},
{id:"date", label:'Author', width:100},
{id:"text", label:'Votes', width:200, align:'left', sort:'int'}
],
from:new Date(2000, 00, 01),
to:new Date(2013, 00, 01)
});

Applicable views: Grid view

Details

note

The method requires the grid_view plugin to be activated.

The configuration object of the Grid view can have the following properties:

Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.