onInit of ui.scheduler, Events Webix Docs

StartAPI Referenceui.schedulerEvents

fires on view initialization

void onInit(object app);

app

objectview instance

Example

webix.ui({
  view: "scheduler",
  url: "https://docs.webix.com/calendar-backend/",
  on: {
    onInit: app => {
      // do smth
    };
  }
});

See also

  • API

  • Back to top