- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2016 07:26 AM
I created one record producer but I need auto population of two fields which are belongs to reference(dot walking) same as form dot walking is it possible?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2016 07:33 AM
Please check below example if it helps:-
var user = g_form.getReference("variables.user_name");
dot-walk the user object to retrieve the user's contact number.
g_form.setValue("variables.contact_number", user.u_contact_number);
Mark Correct if it solved your issue or hit Like and Helpful if you find my response worthy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2016 07:30 AM
Are the references already stored in variables? Because you can dot-walk through those...
producer.variable.<source field>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2016 07:33 AM
Please check below example if it helps:-
var user = g_form.getReference("variables.user_name");
dot-walk the user object to retrieve the user's contact number.
g_form.setValue("variables.contact_number", user.u_contact_number);
Mark Correct if it solved your issue or hit Like and Helpful if you find my response worthy.