hrueger / ngx-onlyoffice

An OnlyOffice wrapper library for Angular.
MIT License
7 stars 7 forks source link

onSave is deprecated #63

Closed Eren1000 closed 3 years ago

Eren1000 commented 3 years ago

It seems that onlyoffice has deprecated the onSave event and recommends using the callbackUrl now. The issue I am having is that when trying to include callbackUrl within the editorConfig, typescript is throwing a type error because 'callbackUrl' is not a property that is expected in the editorConfig object. In the source code, editorConfig appears to be of type 'any' but for some reason is enforcing a type during runtime. Do you have any suggestions on what I could change so that 'callbackUrl' can be included in the editorConfig object?

hrueger commented 3 years ago

You need tu put the callbackUrl property into the inner editorConfig object. Example: https://github.com/SchoolSquirrel/SchoolSquirrel/blob/a3ed3ed72392308b340ac30ac24b8c0f441ae4da/SchoolSquirrel/src/app/_pages/edit-document/edit-document.component.ts#L109 Does that help?

Eren1000 commented 3 years ago

It works, thank you!