Can you check with this approach? procedure TMainForm.UniFormCreate(Sender: TObject); begin with UniCalendarPanel1 do begin ShowDayView := True; ShowWeekView := True; ShowMonthView := True; ShowNavBar := True; JSInterface.JSConfig('defaultView', ['week']); JSInterface.JSAddListener('beforerender', 'function(){'+ ' this.setTimezoneOffset(-180);'+ ' this.updateTimezoneOffset();'+ ' this.setView("month");'+ '}' ); end; end;
    • Upvote
    1