Skip to main content
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Anmol_Bhardwaj

It's pretty much the same thing,

if you have to use event handler instead, 

Instead of step 1 & 2, what you need to do is,

  • Create event handler with
Event.NODE_ADDED

 for the required DAM path.

  • Then , you can use the event.getPath() method to get the path of the affected item. E.g. the added/removed node or the property that was added/removed/changed.
  • After that, it's the same steps.

3 replies

Anmol_Bhardwaj
New Participant
April 26, 2022

Here's what I would do:

Assuming, the XLS files would be uploaded in a particular folder in the DAM.

 

 

New Participant
April 26, 2022

but if we have to make it with event handle then?

Anmol_Bhardwaj
Anmol_BhardwajAccepted solution
New Participant
April 27, 2022

It's pretty much the same thing,

if you have to use event handler instead, 

Instead of step 1 & 2, what you need to do is,

  • Create event handler with
Event.NODE_ADDED

 for the required DAM path.

  • Then , you can use the event.getPath() method to get the path of the affected item. E.g. the added/removed node or the property that was added/removed/changed.
  • After that, it's the same steps.