I am trying to use the onRequestUsers
event for the mentions feature on an Angular document-editor element:
<document-editor
id="docEditor"
[documentServerUrl]="DOCUMENT_SERVER"
[config]="config()"
[events_onDocumentReady]="onDocumentReady"
[events_onDocumentStateChange]="onDocumentStateChange"
[events_onRequestRename]="onRequestRename"
[events_onMetaChange]="onMetaChange"
[events_onRequestHistory]="onRequestHistory"
[events_onRequestHistoryData]="onRequestHistoryData"
[events_onRequestHistoryClose]="onRequestHistoryClose"
[events_onRequestRestore]="onRequestRestore"
[events_onRequestUsers]="onRequestUsers"
>
</document-editor>
However, the onRequestUsers
event is not firing. Other events such as onDocumentReady
, onRequestHistoryData
, onRequestHistoryClose
, and onRequestRestore
are working correctly.
@onlyoffice/document-editor-angular version: 3.0.0