setEventText
warning
Эта функицональность устарела
Description
Обновляет текст конкретного события
setEventText: (id: string, text: string) => void
Parameters
id- (required) string - уникальный идентификатор событияtext- (required) string - обновлённое текстовое содержимое события
Example
var eventId = scheduler.addEvent({
start_date: new Date(2013,1,10),
end_date: new Date(2013,1,13),
text: "Conference"
});
...
scheduler.getEvent(eventId).text = "Meeting";
scheduler.updateEvent(eventId);
Related API
Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.