Accessing SharePoint term store with Javascript

To access the term store with JavaScript, refer to the following links: https://cann0nf0dder.wordpress.com/2013/04/09/accessing-taxonomy-term-store-with-jsom/ http://dotnetmafia.sys-con.com/node/2639264/mobile https://habaneroconsulting.com/insights/returning-a-sharepoint-2013-termset-in-a-tree-structure-using-javascript#.V4GMso-cG70 http://sharepoint.stackexchange.com/questions/78514/accessing-terms-in-term-store-using-jsom-in-sharepoint-2013 http://www.vrdmn.com/2012/12/working-with-taxonomy-and-javascript-in.html

Tips for creating a custom Web template in SharePoint 2010

1. When compiling the project, if you run into a conflict with features during deployment in Visual Studio while developing the Web template, consider moving different elements, such as lists, site columns, and so forth to different features. Don’t try to put all the elements of the Web template solution in one feature. 2. In […]

Adding Javascript to a sandboxed Visual Web Part

Adding JavaScript to a sandboxed Visual Web Part seems to work best when using the following script inside the .ascx file: <script type="text/javascript">     SP.SOD.executeFunc("~sitecollection/_catalogs/siteassets/MyWebPart/MyWebPartScript.js", null, LoadMyScript);     //the following two variables keep the page with the web part from freezing and becoming uneditable when in edit mode     var inDesignMode = document.forms[MSOWebPartPageFormName].MSOLayout_InDesignMode.value;     var wikiInEditMode = document.forms[MSOWebPartPageFormName]._wikiPageMode.value;     if […]

Applying a theme quickly to subsites

The secret sauce is ThemedCSSFolderURL for applying your theme quickly to many subsites on non-publishing sites with a code based solution. SharePoint: Subsite Theme/Composed Looks Inheritance https://msdn.microsoft.com/en-us/library/office/microsoft.sharepoint.spweb.themedcssfolderurl.aspx