Tag: Sharepoint
To debug a Sharepoint timer job
Deploy the timerjob.
Open Services and restart the Sharepoint Timer Service.
In Visual Studio, attach to OWSTimer.exe
Set break point and debug as usual
Extend a Sharepoint web app to another port
You can extend existing Sharepoint web application to another application on another port. A new IIS site will be created for the new web application.
Go to Central Admin, select manage web applications, select the web app you want to extend and click “Extend” on the ribbon.
Check if it’s edit mode in javascript in Sharepoint
var wikiInEditMode = document.forms[MSOWebPartPageFormName]._wikiPageMode.value;
if (wikiInEditMode == “Edit”)
{
// wiki page is in edit mode
}
else
{
// wiki page is not in edit mode
}
if (wikiInEditMode == “Edit”)
{
// wiki page is in edit mode
}
else
{
// wiki page is not in edit mode
}
Another solution http://sharepoint.stackexchange.com/questions/12792/how-do-i-know-if-the-page-is-in-edit-mode-from-javascript
var inDesignMode = document.forms[MSOWebPartPageFormName].MSOLayout_InDesignMode.value; if (inDesignMode == "1") { // page is in edit mode } else { // page is in browse mode }