I've purchased the Developers version. I have a form that has a checkbox for "I Agree". I have a description that needs to be included when I print the entry. Is this possible? If not, is there another solution?
Thanks!
Cameron
I've purchased the Developers version. I have a form that has a checkbox for "I Agree". I have a description that needs to be included when I print the entry. Is this possible? If not, is there another solution?
Thanks!
Cameron
Can you link to your form? Can you give us more information on what you are doing? Are you printing in the front end or back end? What field type is the information stored in?
It's a long lease application form:
https://www.oldtownsq.com/lease-application/
Towards the end of the application is an "I Agree" checkbox with a length description. e.g. "I (We) certify that the facts set forth in this rental application are TRUE and COMPLETE...."
Printing an entry from within the admin.
For that checkbox, the description is a field description? I'm sorry, I can't go through eight pages of application to see how you have this set-up...
Yes. A Field Label description.
Just checking-in on this. Any thoughts regarding how I can get some text to print when printing a notification?
Thanks!
Cameron
I'm interested in this solution as well
I think I would copy the text you want from wherever it is in the form, using JavaScript or jQuery, and copy it into a hidden field on the form, so that when the form is submitted, the text they agreed to becomes part of the entry. Then, when you print it, you will be printing that as well.
You could also just copy the text you want and paste it into the hidden field, then not rely on jQuery at all to copy it, but now you will have to maintain two copies of the data. Better to store the data in one place and then use it multiple times.
Here is an explanation of copying a value from one element to another on a page, with jQuery: http://stackoverflow.com/a/15071297
Copying the text into a hidden field worked. Thanks, Chris!