HI,
we need to add instance number in the footer of forms after archived it in LF
Regards,
HI,
we need to add instance number in the footer of forms after archived it in LF
Regards,
Dear Banan,
You can put a field in the form, and put in it the default value for the instance id :
but please note that this value will not show on the submission form.
it will show after submission.
Regards,
Maher.
we need to view instance ID as attached file ,
hello,
you can try the following.
after saving the instance id in a variable using the default value, you can use a custom html section as follows :
<div id="footer"></div>
and using a jquery code you can put the instance id in the custom HTML section as follows :
$('#footer').append('<footer><p>Instance ID : '+ $('#q14 input').val()+'</p></footer>');
with q14 being the instance id variable.
Regards,