• 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: Some interaction after Form submission

Some interaction after Form submission 14 years 4 months ago #9204

I am going to use RS Form or RS Form Pro as a registration form. After the form is submitted, is it possible to have a page display with the conformation of the results with a print icon? This will be their voucher. Do I need Pro, or will the regular RS Form do that?
The administrator has disabled public write access.

Re:Some interaction after Form submission 14 years 4 months ago #9223

  • bogdanc
  • bogdanc's Avatar
  • OFFLINE
  • Moderator
  • Posts: 669
  • Thank you received: 11
Hello,

You can refer to this post from the forum where it is explained how you can use RSForm! Pro in order to create a Joomla! registration form:

www.rsjoomla.com/customer-support/forum/...a-new-site-user.html

If you delete this code line from the script:
exit();

then you will be able to show the information with which the user registered in the Thank You message and a print button in the message by creating a simple button in the thank you message, that can contain this code line in the additional attributes box:
onclick="window.self.print();"
Last Edit: 14 years 4 months ago by bogdanc.
The administrator has disabled public write access.

Re:Some interaction after Form submission 14 years 4 months ago #9284

Is it possible to have the information that the user entered into the RSform Pro fields saved to a PDF document and then emailed to me, instead of just having plain text emailed to me? Thanks
The administrator has disabled public write access.

Re:Some interaction after Form submission 14 years 4 months ago #9287

  • gtech
  • gtech's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 11
here is what you can do?

1. In the thank you section click html to insert code.
2. Use this code:

<table width="900" border="0" align="center">
<tr>
<td colspan="3">Thank you here is your voucher</td>
</tr>
<tr>
<td width="4" background="www.yoursite.com/images/images.jpg"><img name="" src="" width="1" height="150" alt="">
<div align="center">
<p> </p>
<p> </p>
</div></td>
<td width="876" background="www.yoursite.com/images/images.jpg"> </td>
<td width="6" background="www.yoursite.com/images/images.jpg"> </td>
</tr>
<tr>
<td colspan="3"><div align="center">
<INPUT onClick="window.print();return false;" value=" Print this page " type=button>
</div></td>
</tr>
</table>


All you need to do now is insert the values that will be moved from the form to the thank you section. Hope this works for you.

By the way I added a background just incase you want to use and image for your voucher. All you have to do is upload the image to the images folder or you site and just call it in by replacing www.yoursite.com/images/images.jpg
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!