![]() |
|
Spaces home Shawn's Work SpaceProfileFriendsFilesMore ![]() | ![]() |
Shawn's Work Spacetips and tricks for SharePoint, Reporting Services, .NET, etc...
|
||||||||||||||||||||||||||
|
November 18 My blog moving to http://blogs.msdn.com/feldmanMy blog moving to http://blogs.msdn.com/feldman November 13 SharePoint, DOCTYPE, and master pagesSharePoint by default does not support taking IE out of quirks mode. This is discussed in a great blog entry by Heather Solomon. Not enforcing a dtd through the DOCTYPE element in the default.master (for example
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd") Caused me a lot of problems since Height 100% is not honored. Specifically the Reporting Services Add-in for Sharepoint is reliant on the height=100% property of tables. It was necessary for me to include the doctype then. This created some other issues in that it broke some of the other scripts in sharepoint. This is because when ie is in quirks mode document.body is the root document element but when the DOCTYPE is applied, document.documentElement becomes the root element. Alot of these discoveries can be made using script debugging in IE
Here's a sample of a script i had to change in IE55UP.js....
function MSOLayout_GetRealOffset(StartingObject,OffsetType, EndParent) { var realValue=0; if(!EndParent) EndParent=document.documentElement; if(EndParent==null){ EndParent = document.body; } for (var currentObject=StartingObject; currentObject !=EndParent && currentObject !=document.documentElement && currentObject !=document.body; currentObject=currentObject.offsetParent) { realValue+=eval('currentObject.offset'+OffsetType) } return realValue; } Reporting Services Support Forms Authentication in Sharepoint Integration ModeBetter late than never - http://support.microsoft.com/kb/939942
Quick Guide on how to install Reporting Services on its own server/cluster in Sharepoint Integration Mode without using Kerberos
October 19 Reporting Services: Images with Transparent BackgroundsIf you've been trying to put a transparent image into reporting services and have not been able to make the background transparent i share your pain. Luckily i found a solution. 1. Place a rectangle where you would place the image 2. Place the image inside the rectangle 3. That's actually it. Simple and not straightforward at all. Can't wait for CSS support in Katmai!
|
Public foldersFolders shared with the world
|
|||||||||||||||||||||||||
|
|