diff --git a/src/includes/head.pug b/src/includes/head.pug index 73072a18521c4dcad05662cc4492b1946bdd4d0e..10553caa76da1c61ff9d62afa311e6498ffecc1e 100644 --- a/src/includes/head.pug +++ b/src/includes/head.pug @@ -25,6 +25,11 @@ head { "entrepreneurProfile": "http://happy-dev.fr/owl/#entrepreneur_profile", "mentorProfile": "http://happy-dev.fr/owl/#mentor_profile", - "account": "http://happy-dev.fr/owl/#account" + "account":"hd:account", + "avatar":"foaf:depiction", + "picture":"foaf:depiction", + "messageSet":"http://happy-dev.fr/owl/#message_set", + "author":"http://happy-dev.fr/owl/#author_user", + "title":"http://happy-dev.fr/owl/#title" } diff --git a/src/scripts/coopstarter.js b/src/scripts/coopstarter.js index 1bd306d59b03c3ecf6bfd8dd56ea69a18c27c960..9e2b4af6f6c1f283ce9f0ab996c155cc7dc571cc 100644 --- a/src/scripts/coopstarter.js +++ b/src/scripts/coopstarter.js @@ -159,6 +159,7 @@ function selectHiddenManagement(select_hidden, option_selected) { //Trigerring a reload of the associated form let parent_form = select_hidden.closest("sib-form"); parent_form.component.inputChange(); + parent_form.dispatchEvent(new CustomEvent('formChange')); refreshPagination(); } @@ -171,6 +172,7 @@ function inputHiddenManagement(field, field_search) { field.setAttribute("value", field_search.value); let parent_form = field.closest("sib-form"); parent_form.component.inputChange(); + parent_form.dispatchEvent(new CustomEvent('formChange')); refreshPagination(); } @@ -205,6 +207,7 @@ function selectHiddenManagementForType(tab, form) { let parent_form = select_hidden.closest("sib-form"); if (parent_form) { parent_form.component.inputChange(); + parent_form.dispatchEvent(new CustomEvent('formChange')); refreshPagination(); } }); @@ -239,6 +242,7 @@ function InitManagementForType() { //Trigerring a reload of the associated form let parent_form = select_hidden.closest("sib-form"); parent_form.component.inputChange(); + parent_form.dispatchEvent(new CustomEvent('formChange')); refreshPagination(); }); }); @@ -485,6 +489,7 @@ function addProperFilterToSearchComponents(targetId) { let parent_form = hidden_field.closest("sib-form"); parent_form.component.inputChange(); + parent_form.dispatchEvent(new CustomEvent('formChange')); refreshPagination(); }); });