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

onBeforeQuickInfo

Description

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

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

Parameters

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

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.