Property Dataset Context
The owner of the values for properties, enabling you to communicate with other properties.
this.consumeContext(UMB_PROPERTY_DATASET_CONTEXT, async (context) => {
...
});Observe the value of another Property
this.consumeContext(UMB_PROPERTY_DATASET_CONTEXT, async (context) => {
this.observe(
await context?.propertyValueByAlias("alias-of-other-property"),
(value) => {
console.log("the value of the other property", value)
}
);
});Set the value of another Property
Dataset Context in relation to Property Editors and Workspaces
Last updated
Was this helpful?