I want to load the month view when the calendar is initialized instead of the list view. I tried to do so by setting the “selected” property below, but that only changes the styling of the “month” tab it still renders the list view. Is there a way to actually display the month view when the calendar first loads?
scheduler.config.bottom_toolbar = [
{ view:"button",id:"today",label:scheduler.locale.labels.icon_today,inputWidth:scheduler.xy.icon_today, align:"left",width:scheduler.xy.icon_today+6},
{ view:"segmented", id:"buttons",selected:"month",align:"center",multiview:true, options:[
{value:"list", label:scheduler.locale.labels.list_tab,width:scheduler.xy.list_tab},
{value:"day", label:scheduler.locale.labels.day_tab,width:scheduler.xy.day_tab},
{value:"month", label:scheduler.locale.labels.month_tab,width:scheduler.xy.month_tab}
]},
{ view:"button",css:"add",id:"custom_add", align:"right",label:" + ",inputWidth:42,width:50, click:function(){ window.location.href="./index.html#addCalendarItem"; }},
{ view:"label", label:"",inputWidth:42,width:50, batch:"readonly"}
];