Jump to content

logistics

Members
  • Posts

    18
  • Joined

  • Last visited

  • Days Won

    3

logistics last won the day on April 24 2018

logistics had the most liked content!

Recent Profile Visitors

990 profile views

logistics's Achievements

Newbie

Newbie (1/14)

6

Reputation

  1. Hello, I have a submission form that requests users to select a value in a drop-down. I would like to use the selected value to look up an email address, based on this value, in a different table, and populate a virtual field with that email address. I would then like to use the value in that virtual field to send a submission notification. How can I achieve this? I cannot see how to load a parameter from another table based on the value of a field. Any help would be much appreciated. Thanks, Julien
  2. Hello, I now understand how the syntax works. Thanks for your help, Julien
  3. Hi Mathilda, I have managed to sort my issue out! I was using a radio choice field, hence why it wasn't working as my reference was not correct. It's now fully working. Thanks for your help with this! Julien
  4. Hi Mathilda, I followed your instructions, but sadly I cannot get it to work. I can get this error message in the debugger: Unable to set property 'onchange' of undefined or null reference My virtual field is called Virtual1, my email field is called Email_address and the trigger field is called Approved_by_CFA. I inserted this scrip in the footer of the details page, but nothing happens if I update the 'Approved_by_CFA' field: <SCRIPT LANGUAGE="JavaScript"> function insert() { var x= document.getElementById("EditRecordEmail_address").value; document.getElementById("cbParamVirtual1").value = x; } document.getElementById("EditRecordApproved_by_CFA").onchange=insert; </SCRIPT> Thanks again for your help. Julien
  5. Hi there, Yes, I put the script in the footer of the details page. I'm sorry to be a pain, but could you tell me what is wrong with the syntax? I had read the post you mentioned, and that formed the basis of the scrip I wrote, in conjunction with this post. I have very little knowledge of Javascript, so I'm not sure where I went wrong... Many thanks, Julien
  6. Hello, how would I go about getting the script to run only if a field has a specific value? I've tried this, but it doesn't work: <script> var checkvalue; checkvalue=document.getElementById("Approved_by_CFA").value; if (checkvalue == "Yes"){ function hide() { document.getElementById("Mod0EditRecord").style.visibility = 'hidden'; } } </script> I've also tried this <script> var checkvalue; checkvalue=document.getElementById("Approved_by_CFA").value; if (checkvalue == "Yes"){ document.getElementById("Mod0EditRecord").style.visibility = 'hidden'; } </script> Any help would be appreciated. Thanks, Julien
  7. Hello, I have a datapage set to send an email to the user when their record is updated. However, the email is sent regardless of which field is updated, and regardless of how many times it is updated. Is there a way to either: Send the email only when a SPECIFIC field is updated on the profile? If so, how? (preferred option) Only allow the email to be sent once? If so how? Many thanks in advance for your help. Julien
  8. Thank you so much! That did the trick
  9. Hi, Outer box I have an online form which has a transparent background, and not border on the outer box. However, in Chrome and Internet Explorer, there seems to be a 'shadow' around the box, but not in Internet Explorer. http://surveys.tmgsupport.co.uk/FAgirlsfootballweek/form2? Is there a way to remove this? Space below outer box On the same form, I have added a line <hr> as I can't add it below the submit button within the Caspio form, as far as I can see. However, there is a big space between the bottom of the Caspio outer, and the line. But in my HTML code, the line is directly beneath the caspio form tag. Any idea how I can remove this? Thanks in advance, Julien
  10. Thank you sooooo much Matilda! That solved it! Massive headache now resolved thanks to your help! Julien
  11. Hi Matilda, Thank you for your help. I followed your instructions but could not quite work out what you meant! I am quite unskilled when it comes to html... The URL to the page is www.fagirlsfootballweek.com and you need to click on 'Complete the survey' button to get to the page in question, where the caspio form is located. The frame around the caspio form renders differently if you are in Firefox, IE 11, or Chrome. I really appreciate you getting back to me. Thanks, Julien
  12. Just to add to my previous post, it seems it's Chrome and Firefox that add another white frame.IE renders the borders properly. Is there a way to avoid this? Thank you Julien
  13. Hello, I have a data submission form embedded in a website. The form has a white border around it. I have set the outer border to none, but still there is this white border. I don't seem to be able to control any of it: thickness, margin between text and border etc... Does anyone know how to control it? Thanks, Julien
  14. Hello MayMusic, Thank you so much for this. Excuse my ignorance, but where should I put this code? In a HTML block, or in the header/footer? Do I need to disable the HTML editor? Thanks again, Julien
×
×
  • Create New...