我可以添加以下行来创建直接链接以从剃刀模板添加新项目
@* this will show an "add" button if the current user is an editor *@
@Edit.Toolbar(actions: "new", contentType: "ContentTypeName")
如果用户是编辑器,是否有类似的方法可以直接链接到内容的项目/数据,而不是单击项目的工具栏 [...] 以访问“表格”按钮/图标。
更新:
我尝试添加此处列出的操作名称“contentitems” :
@Edit.Toolbar(actions: "new,contentitems", contentType: "ContentTypeName")
但是没有添加“表格”按钮。
解决方案:
我使用了以下代码(注意添加了“更多”)
@Edit.Toolbar(actions: "new, more, contentitems", contentType: "Image")
用户必须单击“...”更多按钮,但这对我来说很好。