Hi everyone,
Happy New Year!
I've set up a WebApp with the following flow: Preloading > Page > Storage > Thank You Page > End.
Also,the form we are using a custom form that has it's own HTML, CSS, Jquery & JS in it.
Please suggest. Thank you in advance.
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Hi @rvnth,
1. You can store the set of questions in a custom schema, and link them to a 'feature' (or whatever terminology you have). In the webapp, when you are doing the preloading, you can get the linked information from your features schema. Based on that you can pull the required questions from the schema where you store all the questions, and display them on the page. Once the recipient fills and saves the survey, the records get saved in the responses schema, with a link to the recipient.
2. During preloading itself you can check whether a response from the recipient already exists in the responses table. If yes, you can route them directly to the thank you page and display a relevant message to them.
3. You can do so by implementing a condition on the webapp link that you have in your email such that a specific parameter gets added or omitted from the link whenever it is a forward. (There is a condition which checks the document mode in the mirror page personalization block, you can use that for your webapp link as well).
if ( document.mode != 'mirror' && document.mode != 'forward' )
Based on the presence/absence of that parameter you can grant/deny access to the survey questions page.
Regards,
Ishan
Hi @rvnth,
1. You can store the set of questions in a custom schema, and link them to a 'feature' (or whatever terminology you have). In the webapp, when you are doing the preloading, you can get the linked information from your features schema. Based on that you can pull the required questions from the schema where you store all the questions, and display them on the page. Once the recipient fills and saves the survey, the records get saved in the responses schema, with a link to the recipient.
2. During preloading itself you can check whether a response from the recipient already exists in the responses table. If yes, you can route them directly to the thank you page and display a relevant message to them.
3. You can do so by implementing a condition on the webapp link that you have in your email such that a specific parameter gets added or omitted from the link whenever it is a forward. (There is a condition which checks the document mode in the mirror page personalization block, you can use that for your webapp link as well).
if ( document.mode != 'mirror' && document.mode != 'forward' )
Based on the presence/absence of that parameter you can grant/deny access to the survey questions page.
Regards,
Ishan
Hi @isahore ,
Could you please provide further clarification on the suggestion you mentioned below:
Currently, I am using a JavaScript activity and querying the schema with queryDef to check if the email address exists and whether there's already a value in the feature_1 column associated with it. However, I'm not certain if this is the right approach.
Thank you in advance
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies