...
When a custom action is selected from the menu, S-Drive runs your code blocks sending selected files id list with action name as parameters. After action is done, S-Drive inform users about action status.
Going Back to the file list when your S-Action is complete
For S-Actions that are Lightning Components, you can trigger the “Back” button to return to the file list by referring to our Back event in your js code.
To include the Back button in your component
<aura:registerEvent name="back" type="cg:back"/>
To fire the back button event in your js code
var eventAction = component.getEvent("back");
eventAction.fire();
Info |
---|
In order for a user to access an S-Action:
|
To configure S-Actions, see S-Action (Free).
...