• 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: Populate fields when checkbox ticked

Populate fields when checkbox ticked 13 years 7 months ago #14794

  • baetensb
  • baetensb's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 4
Helle, i'm using a form to book a ride with a taxi. The customer needs to enter the customer details including the home address, address of the departure and the address of arrival.

I would like to offer a checkbox and when it is ticked, the address of the home address is copied to the departure address (street, house number, postal code, country). Can you please explain how i can do that?

Many thanks in advance.
The administrator has disabled public write access.

Populate fields when checkbox ticked 11 years 2 months ago #26525

  • baetensb
  • baetensb's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 4
Solved it:
function copyHomeAddress()
{
	if (document.getElementById('GebruikKlantgevens0').checked) 
	{
		document.getElementById('AdresenhuisnummerVertrek').value = document.getElementById('Woonadresenhuisnummer').value;
		document.getElementById('PostcodeVertrek').value = document.getElementById('Postcode').value;
		document.getElementById('PlaatsVertrek').value = document.getElementById('Plaats').value;
		document.getElementById('TerugbelnummerVertrek').value = document.getElementById('Telefoonnummer').value;
	}
	else
	{ 
		document.getElementById('AdresenhuisnummerVertrek').value = '';
		document.getElementById('PostcodeVertrek').value = '';
		document.getElementById('PlaatsVertrek').value = '';
		document.getElementById('TerugbelnummerVertrek').value = '';
	}
}
The administrator has disabled public write access.
The following user(s) said Thank You: Ericrib
  • 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!