在哪里设置可在 Sitecore 编辑器选项中编辑的字段?

Where do I set fields that can be edited in Sitecore editor options?

我在 sitecore 的哪个位置配置单击此按钮时显示哪些字段? (目前,它列出了模板上 7 个字段中的 3 个,我想添加另一个以进行编辑)。

Screenshot

它是编辑框架 按钮之一。当您打开控件标记时,您会看到类似这样的内容:

<sc:EditFrame ID="editFrame" runat="server" Buttons="/sitecore/content/Applications/WebEdit/Edit Frame Buttons/Default">
    ...
</sc:EditFrame>

它与 MVC 不同,但相似。您需要获取 Buttons 属性值。

当您在 core 数据库中打开 /sitecore/content/Applications/WebEdit/Edit Frame Buttons/Default 路径时,您会看到子项列表。这是你的按钮。对于您的情况,它应该只有一个按钮:编辑项目。此项目有 Fields 字段,其中使用竖线作为分隔符是可用于编辑的字段列表。