• 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: Adding text to a field using javascript

This message has been removed by user's request. 12 years 10 months ago #14113

  • 63f691c2fa0e87d7519da8989de5042e@RSJOOMLA_DELETED
  • 63f691c2fa0e87d7519da8989de5042e@RSJOOMLA_DELETED's Avatar
This message has been removed by user's request.
Last Edit: 12 years 10 months ago by 9d8137fc0b0118d3308edeb7da179925. Reason: spelling
The administrator has disabled public write access.

Re:Adding text to a field using javascript 12 years 10 months ago #14132

  • andreic
  • andreic's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 729
  • Thank you received: 59
Hello,

Please try using a script similar to:
function GetAirportName()
{
var i;
for(i=0;i<document.getElementsByName('form[RadioGroupName]').length;i++)
if (document.getElementById('RadioGroupName'+i).checked)
document.getElementById('TextFieldName').value = document.getElementById('RadioGroupName'+i).value;
}
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.
The following user(s) said Thank You: 9d8137fc0b0118d3308edeb7da179925
  • 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!