03-09-2020 11:54 AM
I have the follow code which creates a button that will display a dialog to create a node. I want to extend the logic before submitting and after submitting.
Before submitting: I want to check some existing nodes' properties if there are any duplicates. Prevent creation of the new node if there are duplicates.
After submitting: I want to fire an Aikau topic to refresh a certain widget or refresh the page.
I'm not sure where to start to extend the submit function. I've checked the FormProcessor but i'm not sure if that's the right place.
function getListCreateButton() {
return {
name: "alfresco/buttons/AlfButton",
config: {
style: {
marginTop: "5px",
marginBottom: "5px"
},
label: "test",
additionalCssClasses: "call-to-action",
publishTopic: "ALF_FORM_REQUEST",
publishPayload: {
formConfig: {
useDialog: true,
formId: "NEW_LIST_ITEM_DIALOG",
dialogTitle: "test"
},
alfDestination: getListDestination(),
itemId: "rlarchive:aListItem",
itemKind: "type",
mode: "create"
}
}
}
Explore our Alfresco products with the links below. Use labels to filter content by product module.