从列表视图中删除共享点列表项?
我已经获得了共享点列表的所有项目。要求是从列表视图中删除列表项。请指导我该怎么做?
我认为可以通过在列表视图中使用复选框来完成。
我不知道如何在列表视图中获取选中的项目以及如何从共享点列表中删除选中的项目?
I have get all items of a share-point list. Requirement is to delete list items form listview. Plz guide me how it can be done ?
I have idea that it can be done by using checkbox in listview.
I am not getting how to get checked items in listview and how to delete checked items from share point list ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以只使用 SPListItemCollection.Delete 方法(假设您使用的是 api)。如果没有那么可以使用Lists.asmx来删除。例如,像下面的代码这样的东西就可以工作
You can just use the SPListItemCollection.Delete method (assuming you're using the api). If not then use can use Lists.asmx to delete. For example ssomething like the code below will work
如果您使用的是 SharePoint 2010,则可以使用客户端对象模型 - 以下是适合您的场景的操作方法: http://msdn.microsoft.com/en-us/library/ee539976.aspx
Johnv2020 答案显示了另外 2 种方法:
And if you are using SharePoint 2010 you can use client Object Model - here is howto for exactly your sceanrio: http://msdn.microsoft.com/en-us/library/ee539976.aspx
Johnv2020 answer shows 2 other ways of doing it: