By: Rahul Mehta | Updated: 2010-07-27 | Comments (2) | Related: > Sharepoint Design
Problem
At certain times, we want to hide the details in user input forms, but also at the same time we want to maintain the data in the backend. In SharePoint we could use the list to store data. The default forms provided in the list like NewForm, Editform and others contain all metadata (fields). Now the problem is if you want to remove fields from the forms, either you need to remove columns from the list or you need to create new forms to replace the default forms.
Solution
To remove specific fields from the default list forms, we need to hide the metadata (columns) from the content type. We will walk through a sample list which contains a couple of fields in the list, but not all fields in the default forms after implementing the solution.
This list basically contains information of an employee like name, id and age. If we create a new employee in the same list, by default it would ask for all the details.
To hide any of the fields (like in my case EmpID), goto Settings > List Settings
Goto Advance settings
Select "Yes" option under the question "Allow management of content types?" to view the content type to which the field belongs.
Select the content type like "Item" in my case.
Select the metadata (column) you want to hide like EmpID in my case.
In "Column Settings" Category, there will be three options i.e. Required, Optional and Hidden. Select "Hidden" and press "OK" to hide the field.
Now when we go back to the new item form, the field does not show up.
With this, we could use this solution to decide what information we need users to input and what information we need to display in the default list forms provided in SharePoint.
Next Steps
- Check out MSSQLTips.com for great information about Microsoft SQL Server.
About the author
This author pledges the content of this article is based on professional experience and not AI generated.
View all my tips
Article Last Updated: 2010-07-27