Reputation: 91
I want to create a simple web application with Sharepoint 2013. It is a home page that addresses several forms that each user can fill in all the forms and view the data you entered. Another superuser can view all completed forms by other users. Would he have to do with html + javascript + some database manager? Or could it be declaratively or unscheduled, with elements of SharePoint?
Upvotes: 0
Views: 157
Reputation: 5081
You can use InfoPath forms to allow user fill in data (all saved data stored in sharepoint list), and make custom view to present data stored in a list.
For creating custom view you can use Client Side Rendering (CSR), which just re-rending incoming data, or use Javascript Object Model (JSOM), which will connect to your sharepoint list and display it whatever you want.
If you don't know about these technologies you can read a lot:
Infopath: InfoPath-Forms-Part
CSR: SharePoint-Client-Side-Rendering-List-Views, Client-side-rendering-JS
JSOM: How to: Retrieve List Items Using JavaScript
Upvotes: 1