Trigger an Alfresco update action by adding content through a link

My current setup involves utilizing Alfresco Community Edition 4.0.e. I have set up Inbound and update rules on a specific folder. During the rule invocation process, my Java script is executed followed by calling my webservice. However, I am encountering an issue where when adding content from Explorer, the update rule is also triggering unexpectedly. Strangely enough, this issue does not occur when adding content from a network drive.

Answer №1

Make sure to deselect the option "Automatically update all properties upon closing this page."

If you leave it checked, metadata will be updated automatically.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

The resume button is failing to activate any functions

I recently encountered an issue with a JS file that is associated with a Wordpress Plugin, specifically a Quiz plugin featuring a timer. I successfully added a Pause and resume button to the quiz, which effectively pauses and resumes the timer. However, I ...

Creating a top-to-bottom pull effect on a single page, similar to the Android title bar, can be achieved using CSS3

Is there a way to achieve an effect in HTML that resembles the pull title bar animation from top to bottom in Android? Any suggestions on how to create this effect or what tools I would need? Currently, when I swipe, the page simply displays a following ...

What is the method to modify the hover background color and click background color for a dropdown item using Bootstrap Vue?

Hovering over the dropdown will change its background color to a light gray. The code below shows the dropdown in a navbar. <b-nav-item-dropdown text="TOOLS" right> <b-dropdown-item href="#" class="dropdown-mine">1</b-dropdown-item> ...

What is the best way to make buttons trigger an action on a jQuery confirmation dialog?

Clicking on an image within the jQuery Dialog will open a confirmation dialog box prompting you to confirm if you want to delete. You can choose between Yes or No for confirmation. This functionality is implemented using three files: The main file index. ...

Using gulp to compile a Vue component without the need for `require` statements

I'm currently exploring the process of constructing a component with Gulp. Right now, I am working on a Vue component that has the following structure: my-component.vue <template> <div class="foo"> </div> </template> < ...

"Return to previous view with the zoom back feature in CanvasJS

How can I implement a zoom back button in CanvasJS using jQuery or normal JavaScript? I've been attempting to place it near the ones in the top right corner, but something seems to be amiss. Alternatively, is it feasible to enable zooming in and out ...

Incorporating the elements of an array into an unordered list for a formatted list display

I have a list here <ul> <li> This is</li> <li> a very nice</li> <li> list</li> </ul> This is a very nice list and this code to insert the array elements into the list var names =["tom", " ...

Issues of unfulfilled requirements in the recent npm (and node) updates

After updating npm and node to the latest versions, I am encountering the following errors and warnings: $ npm --version 2.4.1 $ node --version v0.10.36 $ npm install > <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="f895 ...

What is the process for transforming a plain JavaScript array into a hierarchical graph format?

Is there a way to transform this flat json construct: [ ["a","b","c"], ["a","b","d"], ["c","b","e"], ["c","b","f"] ] Into the specified graph structure utilizing javascript? {"uri": "a", "subItems": [ {"uri": "b", "subItems": [ ...

Generate visual at reduced quality (three.js)

Is there a way to reduce the resolution of my rendered canvas similar to how it can be done with the Blender camera resolution? I came across a suggestion to use renderer.setDevicePixelRatio(window.devicePixelRatio) However, when I tried this, the objec ...

Implementing a node.js application deployment with pm2 to ensure zero downtime

While there are countless tutorials on developing chat applications using socket.io and node.js, the event-driven advantage of Node is undeniable for building chat apps. However, a recent thought crossed my mind - how can I ensure the sustainability of my ...

Facing issue with receiving uploaded files in Spring controller

I am looking to upload a .txt file and then process it in my controller. Below is the code snippet from my .jsp file containing the form: <form id="uploadForm" action="contact/importContacts" method="POST" enctype="multipart/form-da ...

Transferring Webdriver instance from @Before hook to Cucumber step

Can anyone help me with this question? public class GeneralHook { DriverManager driverManager; WebDriver driver; ConfigFileReader configFileReader = new ConfigFileReader(); @Before public void before(Scenario scenario) { Syste ...

Add an event listener to a specific class in order to control the visibility of its child elements by

Whenever I click on the "title text" link, the <ol> element refuses to hide, despite my efforts. After thoroughly reviewing the jQuery documentation and scouring Stack Overflow for answers related to .click(), .children(), .toggle(), and .hide(), I a ...

Implementing image-based autocomplete in a search bar within an MVC framework

Seeking assistance to implement a unique feature for my MVC application. I aim to create a search box that suggests images based on user input rather than text. The functionality involves matching the user's input with the "Title" property in an Ent ...

Every time you attempt to download in Vue, you are met with the familiar sight

Encountering a peculiar issue while attempting to download an apk file using a Vue.js website: Referring to How to download a locally stored file in VueJS, I am trying to download a local file with this command: <a href="../../app-debug.apk" download= ...

The last javascript file that was included has been overlooked

When using jqplot, I noticed that the last included plugin is being ignored. If I switch their positions, the first to last one works while the last one does not. There are no errors in the console to indicate what might be going wrong. Moving the canvasOv ...

Code snippets to reduce excess white space on a website using HTML and CSS

On my website, there are multiple tabs, each containing content from an HTML file. When a user clicks on Tab1, boxes with images are displayed. The layout can be seen in the following Code Demo: Code Demo here There seems to be extra space before and afte ...

Exploring an array to retrieve a specific value

Can someone assist me? I am looking to create a JavaScript function that follows the structure of the code example below. Unfortunately, I do not have enough programming skills to develop a functional solution from scratch. The goal is to input a value, ...

Assign a value to the cookie based on the input from the form

I recently asked a similar question, but it seems like I missed providing some context, which is why I couldn't get it to work. My goal is to set a cookie value of a form entry when clicking on it (using the carhartl jquery plugin), but nothing happen ...