One of the features I've always missed in SharePoint OOTB is a News Slider, and with SharePoint 2013 and the new web standards for "mobile first cloud first" ect… what I've been missing is a Responsive News Slider. The solution is SharePoint Content by Search and a good JQuery Slider of your choice. My preferred …
Month: June 2015
Content by Search – Open link in Modal dialog
Changes made to Display Template | <div class="cbs-pictureOnTopImageContainer" id="_#= pictureContainerId =#_"> <a class="cbs-pictureImgLink" href="#" onclick="javascript: SP.UI.ModalDialog.showModalDialog({ url: '_#= linkURL =#_', title: '_#= $htmlEncode(line1) =#_' }); return false;" id="_#= pictureLinkId =#_"> _#= pictureMarkup =#_ </a> </div>
SharePoint 2013 Apps How-To
Da er tiden kommet for et par innlegg om SharePoint 2013!! J Installasjon av et nytt SharePoint 2013 miljø vil bli diskutert i en annen post, i denne fokuserer vi på hvordan konfigurere apps for SharePoint 2013 Du trenger følgende: En SharePoint 2013 farm ferdig satt opp ( Husk, "App Management Service Application") Tilgang til …
Setting Site Collection MasterPages PowerShell Way
####################### ############################ asnp *sharepoint* $site = Get-SPSite http://ss11.manhattan.com # Change master page in each site foreach ($Web in $Site.AllWebs) { $Web.MasterUrl = "/_catalogs/masterpage/zeus/wide-sidebar.master" $Web.CustomMasterUrl = "/_catalogs/masterpage/zeus/wide.master" $Web.Update() $Web.Dispose() } ############################# Set Mysites Masterpages asnp *sharepoint* …
Continue reading Setting Site Collection MasterPages PowerShell Way