Hi all,
I have the problem that all events I fire in a standard component are not executed. The same process in a sapui5 component works.
What I mean is the following:
sap.designstudio.sdk.Component.subclass("componentName", function() {
this.componentName = function(value) {
this.fireEvent("demoEvent);
}
In this case fireEvent should call "demoEvent" which executes the commands on the Design Studio WYSIWYG layer. But the commands I set there are not executed.
If I do the same in a SAPUI5 component it works:
sap.ui.commons.TextArea.extend("componentName", {
afterDesignStudioUpdate : function(value) {
this.fireDesignStudioEvent("demoEvent");
}
I know the event calls aren't the same, but in a standard component I am not able to choose something else so I am guessing that's the same call?
Has someone an advice?
Best,
Christian