You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this is how i want to keep track on of the changes in the editor on change method
getDataFromJsonEditor(ev?: any) {
console.log("full value##########", ev)
if (ev && typeof ev === 'object' && !('isTrusted' in ev)) {
console.warn("### data received for the change in the json editor ### :", ev);
this.updatedSchemaJsonData = ev;
}
}
this is my method actually where I am using this for the page where I am getting the data and updating it.
The issue is when I do the changes for the first update the change event get tracked and emit successfully and when i submit the data and try to update the data once again the change event do not emit and get tracked.
What can be the issue. I have tried it for the normal input box and my methods are working fine.
Can anybody help to keep track of the latest changes. I have tried the OnChange method from the editor option as well that is also not working.
The text was updated successfully, but these errors were encountered:
this is how i want to keep track on of the changes in the editor on change method
this is my method actually where I am using this for the page where I am getting the data and updating it.
The issue is when I do the changes for the first update the change event get tracked and emit successfully and when i submit the data and try to update the data once again the change event do not emit and get tracked.
What can be the issue. I have tried it for the normal input box and my methods are working fine.
Can anybody help to keep track of the latest changes. I have tried the OnChange method from the editor option as well that is also not working.
The text was updated successfully, but these errors were encountered: