Hello,
I've worked out how to create a text box for a user to paste a screenshot into a form, for example when they need to evidence funds in a bank account:
But on form submission, the screenshot image is lost regardless of the next activity. Is there a way to get around this?
Or better yet, can I create a comments box in Laserfiche Forms that is like the comments box we use in Laserfiche answers?
The html code that I use is very simple:
<style>
p {
border: 1px solid lightgrey;
border-radius: 8px;
width: 93%;
}
</style>
<h5>Upload screenshot image here</h5>
<p contenteditable="true"><br><br></p>
Many thanks in advance!