Jump to content

Set TUniCalendarPanel view type programicaly


kkelchev

Recommended Posts

Hi,

19 minutes ago, kkelchev said:

Is it possible to set programmicaly (with code) current view type  - cvDay, cvWeek, cvMonth

procedure TMainForm.UniButton1Click(Sender: TObject);
begin
  UniCalendarPanel1.JSInterface.JSCall('setView', ['day']); // week, month
end;

 

19 minutes ago, kkelchev said:

 We wish , initially calendar  (for example) to be in Week mode

UniCalendarPanel -> ClientEvents -> UniEvents ->

function beforeInit(sender, config)
{
    config.defaultView = 'week'; //day, month (default)
}

 

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...