Перейти к основному содержимому

createGridView

к сведению

Эта функциональность доступна только в версии PRO.

Description

Настраивает Grid view внутри планировщика

createGridView: (config: any) => void

Parameters

  • config - (required) object - объект конфигурации 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(2025, 00, 01),
to:new Date(2027, 00, 01)
});

Доступные представления: Grid view

Details

примечание

Для использования этого метода необходимо активировать плагин grid_view.

Объект конфигурации Grid view может иметь следующие свойства:

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.