如何启用 WebPartDisplayMode
我正在尝试向页面添加 Web 部件,但无法启用“编辑”模式。仅启用浏览模式。如何启用编辑和设计模式?
I am trying to add a webpart to page and I cannot get the "Edit" mode to enable. Only the browse mode is enabled. How do I enable Edit and Design modes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 webpartmanager 中启用
。并将 Web 部件的AllowEdit
属性设置为true
You might enable
<Personalization Enabled="true" />
in webpartmanager. And set the webparts'sAllowEdit
property totrue
遇到了同样的问题,然后意识到我需要先登录/验证用户身份,然后才能看到设计/编辑模式。这是因为无论您进行什么更改,它都会被保存并保存。与您登录的用户关联。
Was having the same issue and then realized that I need to login/authenticate with a user before I can see the design/edit mode. That's because whatever changes you do it will be saved & associated to your logged user.