Skip to main content

Hide custom code within SP 2010 modal windows

If you have ever added custom elements to your master page above or below the standard DIV tags you will notice that they start appearing in the SharePoint 2010 Modal windows when you don’t want them to.

The simple fix is to use the class “s4-notdlg” on your custom element to hide it when viewing the modal pop up windows.

To give you a better idea of what I am talking about I added in a simple DIV tag right above the s4-ribbon row DIV: The inline CSS below is just to make it stand out.

<div class="my-customdiv">Here is my custom header</div>
<style>
.my-customdiv{
    background-color: #009;
    border-bottom: 4px #FFF solid;
    text-align: center;
    color: #FFF;
    font-size: 10pt;
    font-weight: bold;
    padding: 10px;
    height: 30px;
}
</style>

Here is what the site looks like with the custom header applied:
image

If I create a new list item or upload a document, the Modal Window shows my custom div above the input form. Not good…
image

To fix this you simply have to add the “s4-notdlg” CSS to the custom DIV tag to hide it from the modal window.

Example:
<div class="s4-notdlg my-customdiv">Here is my custom header</div>

Now the modal window will not show my custom DIV:
image

Comments

Anonymous said…
Handy tip, thanks!
Anonymous said…
Very good article.. good work..
Jhon Davis said…
I new another old method but this method is a lot easier, thank you for blogs.

- John Devis
Magento Themes
Unknown said…
Beauty is in simplicity...I'm a devotee of your blog!! You are my no 1 resource for all things sp branding. I'm working on a 2010 publishing site for a high proile client, including your centered fixed width solution and the only issue I'm having is controls (i.e. save, cancel...) disappearing in modal windows. I saw this post on hiding custom code in modal windows and I was wondering how to incorporate the two solutions? Sorry to be vague, pls let me know if you need more details. Keep up the excellent work!!
Web Design Firm said…
@ Jessica! great comment, you are absolutely right about this blog. It has great value for us.

- Tanya
Web Design Firm
Samim Al-Bader said…
You were and will be the best resource for information and tips regarding sharepoint branding as well as other aspects. Thanks alot from my heart for sharing.
Thanks for sharing your thoughts. Your blog has a great source of information to learn from in web development. Looking forward to more updates has with is.
Christine said…
Thank you for this incredible blog, you explain things so well (I am a SharePoint 2010 beginner and your stuff is really so valuable), I wish I'd discovered you sooner! Thank you for sharing so much knowledge.
Wow thanks a lot for posing and sharing an information of this quality, extremely helpful when it comes to and go hiding code of custom coding.....

Magento Themes
Free SMS said…
Wow, seems to be a great way as how to go about and save your custom program code using SP 2010 modal windows. Well done keep sharing posts like such.

Popular posts from this blog

SharePoint 2010 Base CSS Classes

This will be the first of many SharePoint 2010 posts. I will be focusing on a few of the main CSS classes used for SharePoint 2010 Public Beta. As the product becomes more final there might be some changes to the class names but I will be sure to create a new post if that happens. This will be quite a lengthy but it should be helpful. The default CSS given below are just highlights of the full CSS attributes for that class. I will be using a basic team site as my base for the screenshots. Here is a basic structure of the main areas that I will cover. Ribbon Row Table Row Left Site Actions Navigate Up Edit Tab List Browse Page Table Row Right Give Feedback Welcome Menu Workspace Body Container Title Row Title

SharePoint 2013 Responsive Table Columns

I have been wanting to write this one for a while now. It is really amazing how UX is really finding is way into everything that we use and interact with. From Custom applications both mobile and on a desktop to document management or large data visualizations. There is always room for better usability and new concepts. SharePoint lists and library functionality really has not changed much for the past 10 years... I remember back in 2003 when I saw the same table/grid based views of documents and list items that exists in SharePoint 2013. But now we can look at them in a whole new way! In this video blog you will see how to create a responsive CSS table so that when the browser size is reduced it will hide specific columns. However hiding data is not always the right thing to do. What if a user needed those columns to filter on or to use for comparison to another document? Well that is where the custom jQuery Column chooser comes in. It allows you to see what columns are displ

SharePoint 2010 Content Query for Blog Posts

I hope this post will help many of you feel comfortable with using the Content Query Web Part. In this post I will walk you through the process of creating a content query web part and configuring it to show custom field types. I will also give details on how to use XSLT to stylize and format the data being pulled. I will be using the following scenario as an example. Say that you had a site collection with a top level publishing site. This publishing site would display a the most recent blog posts from all blog sites within its own site collection. To solve this problem we will use a Content Query Web Part and a customized ItemStyle.xsl using XSLT. Please note that the “SharePoint Server Publishing Infrastructure” needs to be enabled at the site collection to display the content query web part. Step 1: Add a Content Query Web Part to Page Navigate to the site that you want the blog posts to show up and click on edit page. Under Editing Tools in the Ribbon, Click on