Hi Omar,
Greetings from Syncfusion support.
We checked your query and would like to let you know that beforeSend event will be triggered before every request of File Manager. So while performing delete operation, beforeSend event will be triggered with action as ‘delete’ in event arguments. This is demonstrated in the below code snippet,
|
<template>
<div>
<ejs-filemanager id="overview_file" :ajaxSettings="ajaxSettings" :view="view" :beforeSend="beforeSend" ></ejs-filemanager>
</div>
</template>
<script>
export default Vue.extend({
methods: {
beforeSend: function (args) {
if (args.action === "delete") {
//you can perform your required action here.
console.log("delete action is triggered");
}
});
</script> |
Please find the below sample for your reference.
Please, refer to the below links for more information on File Manager component.
Regards,
Shalini M.