Hello people,
Developping a Plugin for DS seems "easy" but I am always blocked on the simpliest things ...
Therefore, instead of losing too much time (already a couple of hours), I do have some questions for you.
1. Updating the component when changing a additionnal property
I created a new plugin, where I just want to display in the value selected in a dropbox. This dropbox contains integer values, but ultimately, I want to list all the characteristic with a activated hierarchy.
The dropdown is defined as a additionnal property and displayed correctly. I attached an event to it like:
this.comboSelChar.attachChange(function(){
alert("Change");
that.selChar = that.comboSelChar.getSelectedKey();
that.callRuntimeHandler("selChar", that.selChar);
alert("Change2");
that.firePropertiesChanged(["hasChanged"]);
alert("Change3");
});
My selChar is updated in the component, but the display is not refreshed.