Take the 2-minute tour ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I have a SharePoint-Hosted app with a survey with textareas and radio buttons. The textareas and radio buttons are connected with columns in a SharePoint list so the user is filling in all boxes and then press a save button to send the data to the list columns. It's a bit complicated to read the answers because it's all on one row.

When you go in to the SharePoint list and want to read the answers is it possible to open it in the same survey page to read the answers?

So when you click on the item you want to see it in the same page you answered it in.

I want to do it in JavaScript.

share|improve this question

1 Answer 1

You can open the site in SharePoint designer , go to your SharePoint List and create a new Display form. In that display form you can re use the same html and JavaScript code of your Survey page. See this blog to know about custom list form.

share|improve this answer
    
Ok but do the anwers so put in show up? –  linkan94 Oct 23 '14 at 8:45
    
for that you will need to pass the ID of the survey item clicked in querystring and in that custom display page write jsom to read the data from the list and display –  Unnie Oct 23 '14 at 8:47
    
ok i'am not the best on this could you write an exampel if you have time? –  linkan94 Oct 23 '14 at 9:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.