Перейти к основному содержимому

onBeforeQuickInfo

Description

Срабатывает непосредственно перед появлением всплывающей подсказки Quick Info для события

onBeforeParse: (id: string | number) => void

Parameters

  • id - (required) string | number - идентификатор события

Example

scheduler.attachEvent("onBeforeQuickInfo", function(id) {
if(scheduler.getEvent(id).readonly){
return false;
}

return true;
});

Details

Это событие можно заблокировать. Возврат false остановит выполнение стандартного поведения.

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.