• 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: Use user names in the multi-page form

This message has been removed by user's request. 2 years 4 months ago #42700

  • 1ebc2f4dfa0327b10ad074d6ae657f29
  • 1ebc2f4dfa0327b10ad074d6ae657f29's Avatar
This message has been removed by user's request.
The administrator has disabled public write access.

Use user names in the multi-page form 2 years 3 months ago #42702

  • dragos
  • dragos's Avatar
  • NOW ONLINE
  • Administrator
  • Posts: 638
  • Thank you received: 119
Hello,

You can find an example on this topic in this article.
The administrator has disabled public write access.
The following user(s) said Thank You: 1ebc2f4dfa0327b10ad074d6ae657f29

This message has been removed by user's request. 2 years 3 months ago #42707

  • 1ebc2f4dfa0327b10ad074d6ae657f29
  • 1ebc2f4dfa0327b10ad074d6ae657f29's Avatar
This message has been removed by user's request.
The administrator has disabled public write access.

Use user names in the multi-page form 2 years 3 months ago #42710

  • dragos
  • dragos's Avatar
  • NOW ONLINE
  • Administrator
  • Posts: 638
  • Thank you received: 119
Hello,

Although this uses a radio group, you can try a similar approach for two Textbox fields, for example, by using the following JavaScript instead:
<script type="text/javascript">
function copyValue(){
    document.getElementById('second_field_name').value = document.getElementById('first_field_name').value;
}
</script>

Afterwards, edit the 'second_field_name' textbox and add the following to its additional attributes area:
onchange="copyValue();"
The administrator has disabled public write access.
The following user(s) said Thank You: 1ebc2f4dfa0327b10ad074d6ae657f29

This message has been removed by user's request. 2 years 3 months ago #42713

  • 1ebc2f4dfa0327b10ad074d6ae657f29
  • 1ebc2f4dfa0327b10ad074d6ae657f29's Avatar
This message has been removed by user's request.
The administrator has disabled public write access.

Use user names in the multi-page form 2 years 3 months ago #42714

  • dragos
  • dragos's Avatar
  • NOW ONLINE
  • Administrator
  • Posts: 638
  • Thank you received: 119
Hello,

You can try the followings:

- in the Free Text field add something similar:

- Hello <span id="idname"></span>

- edit your Name field and add this snippet in the Additional Attributes area:
onchange="document.getElementById('idname').innerHTML = this.value;"
The administrator has disabled public write access.
The following user(s) said Thank You: 1ebc2f4dfa0327b10ad074d6ae657f29

This message has been removed by user's request. 2 years 3 months ago #42715

  • 1ebc2f4dfa0327b10ad074d6ae657f29
  • 1ebc2f4dfa0327b10ad074d6ae657f29's Avatar
This message has been removed by user's request.
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!