I have an entity, and in its JSON file under clientDefs, I defined a dynamic handler:
Inside this handler, I have access to the this.recordView.model object, which has methods like get, set, save, fetch, etc.
The this object contains model and recordView, which are related to the scope of the entity in question.
My handler starts with the following code:
My question is, how can I access models of other entities within this local scope code to use in my logic? Is there a way to inject some kind of App object in the list of dependencies?
Thank you.
Code:
"dynamicHandler": "arc-custom-plugin:handlers/dynamic/unit",
The this object contains model and recordView, which are related to the scope of the entity in question.
My handler starts with the following code:
Code:
define('arc-custom-plugin:handlers/dynamic/unit', ['dynamic-handler', 'arc-custom-plugin:lib/module-js-functions'], function (Dep, Utils) { ...
Thank you.
Comment