본문으로 건너뛰기

createGridView

정보

이 기능은 PRO 에디션에서만 사용할 수 있습니다.

Description

스케줄러 내에서 Grid 뷰를 설정합니다.

createGridView: (config: any) => void

Parameters

  • config - (required) object - Grid 뷰 구성을 위한 설정 객체

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

노트

이 메서드를 사용하려면 grid_view 플러그인이 활성화되어 있어야 합니다.

Grid 뷰 구성 객체는 다음 속성을 지원합니다:

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.