createGridView

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

void createGridView(object config);
configobjectGrid 뷰 구성을 위한 설정 객체

Available only in PRO Edition

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

Related samples

Details

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

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

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

See also
  • Articles
  • 맨 위로