Hi,
On front-end, this view -> Meeting Detail View, i have a postRequest, and in "reponse" i have a CareId.
How i can "open" the small edit view of CareId ?
I have try to view in console F12 what request do when open a smallEditView modal but not find any request.
Regards
On front-end, this view -> Meeting Detail View, i have a postRequest, and in "reponse" i have a CareId.
How i can "open" the small edit view of CareId ?
I have try to view in console F12 what request do when open a smallEditView modal but not find any request.
Regards
PHP Code:
Espo.Ajax.postRequest(self.model.entityType + '/action/createCare', {
meetingId: self.model.get('id'),
}).then(function (response) {
view.model.fetch();
self.model.trigger('update-related:cares');
console.log(response); // response have careId -> open to small Edit ?
});
Comment