共享点列表字段的上下文菜单
是否可以将上下文菜单设置为共享点列表中的任何字段,类似于为带有链接和编辑菜单的标题字段显示的菜单?我还需要权限来配置(添加/删除)上下文菜单中可用的选项。有什么建议吗?
谢谢!
Is it possible to set context menu to any fields in a sharepoint list, similar to the one dispalyed for the title field with link and edit menu ? Also i need the previlige to configure(add/remove) the options available in the context menu.Any suggestions?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有现成的选项可以将上下文菜单附加到不同的字段,但有一个使用 powershell 的解决方案: http://www.ilovesharepoint.com/2008/08/add-sharepoint-list-item-context-menu.html
添加选项可以通过在功能中放置自定义操作来完成上下文菜单:http://blog.thekid.me.uk/archive/2007/06/23/sample-editcontrolblock-customaction-for-sharepoint.aspx
您可以做一些事情从上下文菜单中删除选项: http://metahat .blogspot.com/2007/01/hiding-sharepoint-2007-list-context.html
但请注意,不支持编辑 OOB javascript 文件,这不是一个好的做法!
There's no out-of-the-box option to attach the context menu to a different field, but there is a solution using powershell: http://www.ilovesharepoint.com/2008/08/add-sharepoint-list-item-context-menu.html
Adding options to the context menu can be done by putting a custom action in a feature: http://blog.thekid.me.uk/archive/2007/06/23/sample-editcontrolblock-customaction-for-sharepoint.aspx
There are things you can do to remove options from the context menu: http://metahat.blogspot.com/2007/01/hiding-sharepoint-2007-list-context.html
However be aware that editing the OOB javascript files is NOT supported and NOT good practice!