<%@include file="../init.jsp"%> <%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet"%> <% List organisation_types = (List) renderRequest.getAttribute("organisation_types"); List main_motivations = (List) renderRequest.getAttribute("main_motivations"); List areas_of_expertise = (List) renderRequest.getAttribute("areas_of_expertise"); List degrees_of_participation = (List) renderRequest.getAttribute("degrees_of_participation"); pageContext.setAttribute("organisation_types", organisation_types); pageContext.setAttribute("main_motivations", main_motivations); pageContext.setAttribute("areas_of_expertise", areas_of_expertise); pageContext.setAttribute("degrees_of_participation", degrees_of_participation); pageContext.setAttribute("required", "false"); %>

Expression of Interest for the EU Multi-Actor Platform

${type}

Data Management

MOVING is responsible for the processing of the personal data provided with your consent when registering and informs you that the data provided will be processed in accordance with the General Data Protection Regulation (EU) 2016/679 of 27 April 2016 (GDPR) and other applicable rules, for the management of the activity and to send other electronic communications of content related to it. Read more in our Privacy Policy .

AUI().use('aui-form-validator', 'aui-overlay-context-panel', function(A) { // Extending Alloy Default values for FormValidator RULES var DEFAULTS_FORM_VALIDATOR = A.config.FormValidator; A.mix( DEFAULTS_FORM_VALIDATOR.RULES, { requiredCheckbox:function (val, fieldNode, ruleValue) { var counter = 0; var nodeName = fieldNode.attr('name'); var checkBoxes = A.all("input[name='" + nodeName + "']").val(); for (var i = 0, len = checkBoxes.length; i < len; i++ ) { if (checkBoxes[i] == 'true') { counter++; }; } console.log('counter='+counter); return counter >= ruleValue; }, }, true ); // Extending Alloy Default values for FormValidator STRINGS A.mix( DEFAULTS_FORM_VALIDATOR.STRINGS, { requiredCheckbox: '' }, true ); // Specify the form validation rules to be applied on this form var rules = { areaOfExpertiseSelect: { requiredCheckbox: 1 }, mainMotivation: { requiredCheckbox: 1 }, commitment: { requiredCheckbox: 1 } }; // filedStrings to override the standard error msgs var fieldStrings = { }; new A.FormValidator( { boundingBox: '#fm', fieldStrings: fieldStrings, rules: rules, showAllMessages: true } ); });