开发者

SharePoint master page problem

开发者 https://www.devze.com 2023-01-26 04:36 出处:网络
I\'m modifying \"Randy Drisgill\" blank master page template( publishing ) . I\'ve added a combo box like,

I'm modifying "Randy Drisgill" blank master page template( publishing ) . I've added a combo box like,

SharePoint master page problem

When I p开发者_如何学Creview on web , everything looks fine as below,

SharePoint master page problem

But I noticed upload document form is getting the same combo box header ,

SharePoint master page problem

Am I missing something ?


Make sure the controls you added for your Dapertments dropdown is in a div tag, and add class="s4-notdlg" to it. This will prevent your dropdown from appearing in SharePoint's modal dialog.

For example:

<div class="s4-notdlg">
  <span>Departments</span>
  <span>{...code for your dropdown control...}</span>
</div>
0

精彩评论

暂无评论...
验证码 换一张
取 消