Sharepoint 2010 WebPartZone
是否可以控制 sharepoint 中 webpartzone 的输出。 我们不想有桌子。
你正在做什么来处理这个问题?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以控制 sharepoint 中 webpartzone 的输出。 我们不想有桌子。
你正在做什么来处理这个问题?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我们还没有这样做。但我们做了类似的事情来覆盖其他 SP 控件的行为。
首先,您需要学习 ASP .NET 控制适配器。
主要思想是可以覆盖任何控件的行为。因此,在这种情况下,您可以重写 Web 部件区域渲染方法并将逻辑放在那里。
唯一的问题是您需要为特定浏览器注册控制适配器并为此使用 .browser 文件。要解决此问题,请创建您自己的 HttpModule 并处理 BeginRequestEvent。在那里您可以为所有浏览器注册您的适配器,例如
希望这会有所帮助。
We haven't done that. But we did similar stuff to override behavior of other SP controls.
First of all you need to learn the conception of ASP .NET Control Adapter.
The main idea is that it's possible to override behavior of any control. So, in this case you can override Web Part Zone Render method and put your logic there.
The only issue is that you need to register your control adapter for specific browser and use .browser files for that. To workaround that create your own HttpModule and handle BeginRequestEvent. There you can register your adapter for all browsers, e.g.
Hope this will help.