Forum Discussion
Ghost item in modern library on edge
Great questions John. It doesn't appear in any other views, only when grouping on this partcular field.
Also provide some information on how the affected column is defined (lookup, single line of text, etc) ?
Kindly inform about the result :)
John
- bart_vermeerschMar 06, 2017Iron Contributor
Hi John, this is the exact same view (Actieve) in classic and modern layout:
There is nog filtering set on the view and the field is a mandatory choice field.
Bart
- Mar 06, 2017
Hi bart_vermeersch,
Ho wmany items are there in the list ( when you go to the site contents what is the number of items displayed). It looks a bit like a publishing/checkin issue. I'm assuming that you are logged in as the same use user in both cases.
Would you be able to run PowerShell to get all list items in your list?
Using PnP PowerShell you could run a script to check all the lists items.
So something like this (untested):
$web = Get-PnPWeb $web.Context.Load($web.Lists) $web.Context.ExecuteQuery() $list = $web.GetList("List name") [Microsoft.SharePoint.Client.CamlQuery] $query = New-Object -TypeName Microsoft.SharePoint.Client.CamlQuery $query.ViewXml = "<View><Query><Where><Gt><FieldRef Name='Id'/><Value Type=''>0</Value></Gt></Where></Query></View>"; $items = $list.GetItems(query)- bart_vermeerschMar 06, 2017Iron Contributor
Hello Pieter Veenstra
Based on the site contents, the total amount of items does not include the ghost item.
Exporting the list does not include the ghost item.
REST call does not include the ghost item.
- bart_vermeerschMar 06, 2017Iron Contributor
Hi John, this is the exact same view in classic view: