keep track and sharing on my sharepoint knowledge :) nice to meet you all
which country user step here?
Tag Cloud
Wednesday, April 15, 2009
How to import Document metadata to moss share document ?
so as i know from the ARTIS Consulting that is have some product avaiable at out site you can consider it :
Metalogix FileShare Migration Manager
DockIT for SharePoint 2007
CodePlex - SharePoint Migration Framework
to know more the prons and cons of the product , the link is here.
Wednesday, April 8, 2009
MOSS usage report
Just a simple sharing here for MOSS end user how to check the usage report :
Go to your team sites, Site Action--> site setting -->Site usage reports ( Site Administration ) , or just replace this /_layouts/SpUsageWeb.aspx to the default.aspx.
Over here you can see have few type of report :
Site usage summary --> overview report for the sites
Request --> the pages request statics for 30 days and monthly
users --> who are visit this sites
Referrers --> where are your visitor click the link from
Destination pages --> which page is the top pages of the request
Wednesday, March 18, 2009
How to embed the HTML/Java Script to your SharePoint list?

learnt this from Path to SharePoint , let me do some summary of the step i have learnt:
- Creat the custome list with following column:
- City: text column (San Diego)
- Country_City: text column (USA_SanDiego)
- Model: choice column (0012, etc.)
- Color: choice column (dkblue, ltblue, blue, red, silver, green, magenta, etc.)
- Clock: calculated column with the following formula:
="<DIV><embed src='http://www.clocklink.com/clocks/"&Model&"-"&Color&".swf?TimeZone="&Country_City&"' width='150' height='150' wmode='transparent' type='application/x-shockwave-flash'></DIV>"
yeah!!! you are done!!
<script type="text/javascript">
//
// Text to HTML
// Feedback and questions: Christophe@PathToSharePoint.com
//
var theTDs = document.getElementsByTagName("TD");
var i=0;
var TDContent = " ";
while (i < theTDs.length) {
try {
TDContent = theTDs[i].innerText theTDs[i].textContent;
if ((TDContent.indexOf("<DIV") == 0) && (TDContent.indexOf("</DIV>") >= 0)) {
theTDs[i].innerHTML = TDContent;
}
}
catch(err){}
i=i+1;
}
//
// ExpGroupRenderData overwrites the default SharePoint function
// This part is needed for collapsed groupings
//
function ExpGroupRenderData(htmlToRender, groupName, isLoaded) {
var tbody=document.getElementById("tbod"+groupName+"_");
var wrapDiv=document.createElement("DIV");
wrapDiv.innerHTML="<TABLE><TBODY id=\"tbod"+ groupName+"_\" isLoaded=\""+isLoaded+ "\">"+htmlToRender+"</TBODY></TABLE>";
var theTBODYTDs = wrapDiv.getElementsByTagName("TD"); var j=0; var TDContent = " ";
while (j < theTBODYTDs.length) {
try {
TDContent = theTBODYTDs[j].innerText theTBODYTDs[j].textContent;
if ((TDContent.indexOf("<DIV") == 0) && (TDContent.indexOf("</DIV>") >= 0)) {
theTBODYTDs[j].innerHTML = TDContent;
}
}
catch(err){}
j=j+1;
}
tbody.parentNode.replaceChild(wrapDiv.firstChild.firstChild,tbody);
}
</script>
For the clock detail you can go to clocklink.com , check out what the country time and clock style and colour you want add to your list...then you will see it!!
Tanks to Chrisophe of this sharing !! [yeah , the world is flat]
Monday, March 16, 2009
Branding sharepoint
Heather slolomon this sites is have simple and nice article, in this websites have :
Introduction to Customization
» MOSS 2007 Design Component Relationships and Diagrams
» Master Pages vs. Themes: Which Do You Choose?
» Branding SharePoint - Part 1: Designing your SharePoint Site
» Branding SharePoint - Part 2: Creating the Design in SharePoint
» Branding SharePoint - Part 3: Changing the Look of SharePoint Components - Intro and Web Parts
Friday, March 13, 2009
Add desciption to MOSS folder
Problem statement : why after add the column [name is as description]to share document but you click on the folder to edit it you will not see the Column there.
Solution : One quick solution for this weird problem I think of is to use site columns functionality of MOSS
(Solution is from...)
Custom metadata for folders in document library | ![]()
|
Hi,
My client requested one simple thing, metadata (columns) for document library. I created the metadata for document library as per the requirements. There are columns like single line of text, choice, date time type. I created the columns for the document library.
He started uploading the documents and giving them the metadata (columns) values.
For some reason he wanted to create folder structure in the document library and that's why he created some folders and inside that uploaded documents.
MOSS showed him OOB (out-of-box, typical strange Microsoft term for existing features of MOSS. This is something like for Windows operating systems to Shut down the PC we need to click on "Start") behaviour. He was only able to add the title for the folder. He thought that he can set values for the folder after creating it and saying "Edit Properties" and he did so.
Ohh...Fainted... what he saw is once again only Title for the folder which he was able to edit.
One quick solution for this weired problem I think of is to use site columns functionality of MOSS.
So instead of creating custom metadata for the document library I created the site columns for the site collection. To create site column I followed the steps as below.
I added the column name, select column type, column group and any other settings required for the column and clicked on Ok.
Now I went to the Site settings again and then clicked on the site content types
Then on the Site content types page I clicked on “Folder” content type.
And here I was again stunned……
We cannot add the site columns for the “Folder” content type. It says, it is “Sealed”.
Then I think of the other solution as to create a new custom site content type and then adding a site column for that content type.
So I created a new custom site content type as “New Sub folder”.
After that I went to Document library settings for which I wanted to add metadata for folders.
In the “Advanced Settings” select “Yes” radio button for the “Allow management of content types?”
And clicked on “Ok”.
On the settings page it showed the new section for “Content Types”.
There clicked on “Add from existing site content type”.
On the Add content type screen selected the site content type that I created in previous step and added it in the list box and clicked on “Ok”.
It started showing the new menu called as “New Sub folder” under the “New” menu on the document library.
So now onwards whenever I create a sub folder using this menu I can add the metadata for the folder also.
And after all these long turns and efforts we managed to have same metadata for folder and documents.