Showing posts with label SharePoint Designer 2013. Show all posts
Showing posts with label SharePoint Designer 2013. Show all posts

Monday, March 16, 2015

Error while updating data in Quick Edit view in SharePoint 2013 list

If you are updating contents in SharePoint 2013 list and you are getting this error message “Sorry, you can't create a new item with Quick Edit because this view is missing one or more required columns. To create a new item, please click "New Item" or add required columns to this view.”, you can fix this issue by doing these steps. While this error is occurring, we can add list items by clicking New Item button but Quick Edit doesn’t work.

image

In my case, I have a list named “Main Sections” and having only one default Title column but it is still not allowing me to do quick edit. To fix this issue, I open my site in SharePoint Designer 2013 and go select “List and Libraries” from left navigation. Then I select my list “Main Sections” and click on Edit Columns button in ribbon.

image

It will open list columns in Column tab as shown below.

image

Now, I select “Name” column and click on Administration Web Page button in Columns tab which opens Edit Column web page where I set “Require that this column contains information:” as No.

image

Once, I press OK, I will be redirected to list settings page. Then, I go to list and change its view as Quick Edit and start filling information by copy paste and it works without any issue.

image

This is list view after Quick Edit.

image

List Templates are not visible in SharePoint 2013

Sometime you try to create lists in SharePoint 2013 site but you find that only 3 list templates in Noteworthy section are appearing all other list templates including custom list templates.

1

It is happening because in your master page, a contentplaceholder named “PlaceHolderPageTitleInTitleArea” is set to visible = false.

2

All you need to do is to edit your master page in SharePoint Designer 2013 and search for “PlaceHolderPageTitleInTitleArea” and  change it  to Visible = “True” and publish the master page.

3

And after this everything is as expected.

4

Hope, it will help.