Premium support for our pure JavaScript UI components


Post by janan »

In grid example, columntypes my column type is set to date as below:
  { text : 'Date', field : 'start', flex : 1, type : 'date', format : 'YYYY-MM-DD', editor: true }. 
Would like to have week number on the calendar which popsup. Could you please help?
Attachments
Screen Shot 2019-09-10 at 10.12.06.png
Screen Shot 2019-09-10 at 10.12.06.png (69.5 KiB) Viewed 683 times

Post by mats »

Please see docs: https://bryntum.com/docs/scheduler/#Common/widget/CalendarPanel#config-showWeekNumber

Column definition:
{ text     : 'Date',
            field  : 'start',
            flex   : 1,
            type   : 'date',
            format : 'MMMM Do YYYY',
            editor : { type : 'date', picker : { showWeekNumber : true } }
        },

Post Reply