jade
08/06/2024, 2:24 PMleekelleher
08/06/2024, 6:00 PMUmbPropertyValueChangeEvent
event is triggered, the property will take the value
from the property-editor, (then bubble it up, to the workspace, or wherever it's being used).
this.value = yourValue; // e.g. whatever the value you want to save
this.dispatchEvent(new UmbPropertyValueChangeEvent());
Setting the this.checked
on your property-editor wont save anywhere, it's only used as state within the component itself.
Hope this helps.jade
08/06/2024, 8:37 PM