I was able to press the button, and later publish it as I did.
Now I have defined an action that lists all the relationships with the distribution list and I would like to capture the list of all the associated records.
Do you have any idea how I can do it? thank you
Now I have defined an action that lists all the relationships with the distribution list and I would like to capture the list of all the associated records.
Code:
actionListaRecordRelation: function () {
var scope = this.scope;
this.wait(true);
this._helper.layoutManager.get(this.model.name, 'relationships', function (layout) {
var panelList = layout;
panelList.forEach(function (item) {
[COLOR=#FF0000]// here I would like to capture all the linked records and turn them into JSON arrays[/COLOR]
}.bind(this));
this.wait(false);
}.bind(this));
}

Comment