
<apex:outputLink id="postTourQuizButton" styleClass="btn"
value="https://www.getfeedback.com/r/{!surveyid}?CnP_PaaS_EVT__Event_attendee_session__c={!selectedAttendeeButtonId}">
What did you Learn about Wildcats?
</apex:outputLink>
2 answers

OK. 1. I tried changing the URL redirect at the end of the survey to salesforce1:/DCTI_Event_Page; however the form field that getFeedback uses to specify the URL for a redirect does not allow "salesforce1:/..." . I can sort of get around this by setting the getFeedback redirect URL to https://salesforce1:/DTCI_Event_Page, which returns me to the correct page; however, it's still in the top window.2. I tried setting the getFeedback redirect to the page where the survey was launched with a parameter to indicate the survey was complete, and then use javascript to redirect to "salesforce1:/DTCI_Event_Page", but again- this does not close the top window.if(qstatus == "complete"){ window.location = "salesforce1:/DTCI_Event_Page_AB?qstatus=complete"; self.close(); };The use case in your example (https://developer.salesforce.com/blogs/isv/2015/01/empower-salesforce1-solution-deep-link.html) reference looks to be very similar to what I'm doing; however, it did not include any sample code about how it works.