• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Add script in RSforms

Add script in RSforms 12 years 2 months ago #21769

  • team6
  • team6's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 2
I need to add a field to validate letter of the DNI. The script works is this
<head>
<script>
function objeto(id)
{
  return document.getElementById(id);
}
 
function verletra()
{
        cadena="TRWAGMYFPDXBNJZSQVHLCKET";
        posicion = objeto("dni").value % 23;
        letra = cadena.substring(posicion,posicion+1);
        objeto("dnidiv").innerHTML = objeto("dni").value+" - "+letra;
}
</script>
</head>
<body>
DNI:<br>
<input type="text" id="dni" maxlenght="9" size="9" onkeyup="verletra()">
<h1><div id="dnidiv"></div></h1>
</form>
</body>

And I need to use this script to add to fresh RSForms a field on a form that I created.

How do I add scripts to Rsforms?

many Thanks
The administrator has disabled public write access.

Add script in RSforms 12 years 2 months ago #21823

  • octavian
  • octavian's Avatar
  • NOW ONLINE
  • RSJoomla! Official Staff
  • Posts: 783
  • Thank you received: 110
You can go to Properties > CSS and Javascript and paste your script (along with the <script> tags) in the "Javascript" textbox.
I'm not sure when you want to trigger this, but I'm guessing if you have a textbox you can set an additional attribute like this:
onkeyup="verletra();"
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Add script in RSforms 12 years 2 months ago #21836

  • team6
  • team6's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 2
Thanks for you ansewring

For you understand me I made 6 images in order.

Down and look please

paramotor.pxp.es/dni.zip

thanks again
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!