Last modified by Alex Cotiugă on 2026/05/02 12:23

From version 13.72
edited by Alex Cotiugă
on 2026/05/02 08:05
Change comment: There is no comment for this version
To version 13.90
edited by Alex Cotiugă
on 2026/05/02 08:15
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -5,7 +5,7 @@
5 5  #set ($editing = true)
6 6  = Tell Us More About Your Project =
7 7  You do not need to have a full specification. A short description is enough to start the conversation.
8 -{{html clean="false"}}
8 +{{html clean="false" wiki="true"}}
9 9   <div class="row">
10 10   <div class="xform col-xs-7">
11 11   <form id="contactForm">
... ... @@ -39,7 +39,7 @@
39 39   </dl>
40 40   <p>Your information will only be used to respond to this request.</p>
41 41   ##<p>Your information will only be used to respond to this request. See the Privacy Policy for details.</p>
42 - <input id="contactSubmit" type="submit" class="btn btn-primary" value="Send my request" disabled="disabled">
42 + <input id="contactSubmit" type="submit" class="btn btn-primary" value="Send my request">
43 43   </form>
44 44   </div>
45 45   <div class="col-xs-5">
XWiki.JavaScriptExtension[0]
code
... ... @@ -6,6 +6,9 @@
6 6   var successBox = $('.reviewNotificationSuccess');
7 7   var errorBox = $('.reviewNotificationError');
8 8  
9 + var nameFieldName = 'Agnease.Code.ContactForm.ContactFormClass_0_name';
10 + var emailFieldName = 'Agnease.Code.ContactForm.ContactFormClass_0_email';
11 +
9 9   function getFormData() {
10 10   var data = {};
11 11  
... ... @@ -12,10 +12,11 @@
12 12   $.each(form.serializeArray(), function (_, field) {
13 13   data[field.name] = field.value;
14 14   });
18 + console.log(data)
15 15  
16 16   return data;
17 17   }
18 -
22 +
19 19   function isValidEmail(value) {
20 20   return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(value);
21 21   }
... ... @@ -22,8 +22,8 @@
22 22  
23 23   function updateSubmitState() {
24 24   var data = getFormData();
25 - var name = $.trim(data[fields.name] || '');
26 - var email = $.trim(data[fields.email] || '');
29 + var name = $.trim(data[nameFieldName] || '');
30 + var email = $.trim(data[emailFieldName] || '');
27 27  
28 28   submitButton.prop('disabled', !(name.length > 0 && isValidEmail(email)));
29 29   }
... ... @@ -35,9 +35,11 @@
35 35   event.preventDefault();
36 36  
37 37   var data = getFormData();
42 +
43 + console.log(data)
38 38  
39 39   submitButton.prop('disabled', true);
40 -
46 +/*
41 41   $.post({
42 42   url: serviceURL,
43 43   data: data
... ... @@ -59,6 +59,6 @@
59 59   successBox.toggleClass('hidden');
60 60   }
61 61   submitButton.prop('disabled', false);
62 - });
68 + });*/
63 63   });
64 64  });