Skip to content

Commit

Permalink
feat(MasterDetail) reload detailview afer call to action
Browse files Browse the repository at this point in the history
  • Loading branch information
denaldhushi committed Mar 16, 2023
1 parent f36a968 commit 6be1f37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/js/masterdetailgrid.js
Expand Up @@ -232,7 +232,8 @@ var masterdetailwork = {

CallToAction: (ev, workflowid) => {
if (SelectedRecordsIds.length > 0) {
runBAWorkflow(workflowid.split(','), SelectedRecordsIds.join(';'))
runBAWorkflow(workflowid.split(','), SelectedRecordsIds.join(';'));
masterdetailwork.MDReload();
}
},

Expand Down

0 comments on commit 6be1f37

Please sign in to comment.