Forms on SharePoint lists

Objective

This article will give a very high level description on various forms on a SharePoint list.  

When we create a new custom list in SharePoint, SharePoint creates three forms (*.aspx) for the custom list. In fact for all list these forms are provided by SharePoint.

 

 

Let us say, there is a list called TestList in your SharePoint site. Columns of list are as follows;

 

Adding New Item

Now when you add new item in the list, NewForm.aspx will get open. You can see the below URL in your browser while adding new item in the list.

http://ABCSERVER:9722/sites/Test4/Lists/TestList/NewForm.aspx?RootFolder=%2Fsites%2FTest1%2FTest4%2FLists%2FTestList&Source=http%3A%2F%2Fc849uss%3A9722%2Fsites%2FTest1%2FTest4%2FLists%2FTestList%2FAllItems%2Easpx

There are two query parameters,

  1. RootFolder: This parameter defines, in which folder Item will get saved.
  2. Source: This parameter defines after completion of action where to navigate.

Note: More on these two parameters in next articles.

 

Editing Existing Item

Now when you edit existing item in the list, EditForm.aspx will get open. You can see the below URL in your browser while editing existing item in the list.

http://ABCSERVER:9722/sites/Test1/Lists/TestList/EditForm.aspx?ID=3&Source=http%3A%2F%2Fc849uss%3A9722%2Fsites%2FTest1%2FTest4%2FLists%2FTestList%2FAllItems%2Easpx

There are two query parameters,

  1. ID: This parameter takes id of the item in list to be edited. If you pass ID which does not exist in the list, SharePoint will throw you below error.
No item exists at http://c849uss:9722/sites/Test1/Test4/Lists/TestList/EditForm.aspx?ID=300&Source=http://c849uss:9722/sites/Test1/Test4/Lists/TestList/AllItems.aspx.  It may have been deleted or renamed by another user.Web Parts Maintenance Page: If you have permission, you can use this page to temporarily close Web Parts or remove personal settings. For more information, contact your site administrator.

Troubleshoot issues with Windows SharePoint Services.

  1. Source: This parameter defines after completion of action where to navigate.

     

Displaying Existing Item

Now when you display existing item in the list, DispForm.aspx will get open. You can see the below URL in your browser while editing existing item in the list.

http://ABCSERVER:9722/sites/Test1/Lists/TestList/DispForm.aspx?ID=3&Source=http%3A%2F%2Fc849uss%3A9722%2Fsites%2FTest1%2FTest4%2FLists%2FTestList%2FAllItems%2Easpx&RootFolder=%2Fsites%2FTest1%2FTest4%2FLists%2FTestList

There are two query parameters,

  1. ID: This parameter takes id of the item in list to be displayed.
  2. Source: This parameter defines after completion of action where to navigate.


Discover more from Dhananjay Kumar

Subscribe to get the latest posts sent to your email.

Published by Dhananjay Kumar

Dhananjay Kumar is founder of NomadCoder and ng-India

One thought on “Forms on SharePoint lists

Leave a comment

Discover more from Dhananjay Kumar

Subscribe now to keep reading and get access to the full archive.

Continue reading