The column that will be hidden when creating the list item, but visible when editing the list item in sharepoint 2007

for the sharepoint list. I want the column not to be visible when creating a new list item, but it should be visible when the item is being edited.

How can i do this?

any help appreciated.

+1
source share
1 answer

You should just set ShowInNewForm to FALSE

If you create a list using CAML, just add ShowInNewForm = "FALSE" to the item for the field

If you use the user interface to create a field, you can use the object model or SharePoint Manager to change the ShowInNewForm property of the field

+2
source

Source: https://habr.com/ru/post/1300432/


All Articles