04/12/2011

This item cannot be deleted because it is still referenced by other pages

If you create a new master page, and you want delete it, sometimes the error will happen:

This item cannot be deleted because it is still referenced by other pages

what you can do???
aha, there is work around to delete it, easy way:

        1- Open the sharepoint designer.
        2- Create a new folder.
        3- Put the target master page into new folder.
        4- Delete the folder.

Read more...

02/12/2011

Enable the Ajax on MOSS 2007


Read more...

Select a specific column in table by content

To select a specific column by content, you can use the following jquery code:

$(document).ready(function () { $('td').each(function () { var $tds = $(this).find('td'); if ($tds.text() == "System Settings") { <!--alert($currText = $tds.eq(0).text());--> $tds.css("background-color", "#F6F6F6"); }



Read more...