Posts

Showing posts with the label SharePoint

Deploy SPFx production solution files in specific folder with in container on Azure CDN

Hi, When we creates SPFx solution and deploying the build files on Azure CDN, it deployes all the files in a container which you mentioned in "deploy-azure-storage.json" file. This is bit messi to see. Because you can deploy multiple solution on the same container. But what if you want to manage solutions by Solutions or By versions. Here is the way. I will show you how to deploy SPFx production deployment files in a specific folder in the Container on Azure CDN. First you have to deploy some gulp task packages in dev-dependencies npm install gulp-util gulp-deploy-azure-cdn --save-dev Now you need to make following changes in the "gulpfile.js" file : const deployCdn = require('gulp-deploy-azure-cdn'); const gutil = require('gulp-util'); gulp.task('deploy-azure-storage-folder', function () {   return gulp.src('temp/deploy/**/*', {}).pipe(deployCdn({       containerName: '<<Your Container Name>>', // Cont

Custom Script functionality will disable some functionality in SharePoint

If Custom Script is Off then you will lose some features which you use generally in SharePoint i.e. : Save Site as Template will be disabled. Option to create Template from a site will be invisible from Site Setting. SharePoint Designer Pages that are not HTML can no longer be updated. Handling List: Create Form and Custom Action will no longer work. Subsites: New Subsite and Delete Site redirect to the Site Settings page in the browser. Data Sources: Properties button is no longer available. Save document library as template will be disabled & you won’t find option to save document library as template in Document Library Settings. Solution Gallery will be invisible from Site Settings. Theme Gallery will be disappear from Site Settings. Help Settings will be invisible from Site Settings. HTML Field Security No longer available in Library Settings. Solutions Gallery is no longer available in Site Settings. Uploading files that potentially include

Open office documents from SharePoint to Client Apps

If you want to open any office document in client side app pragmatically then here is the solution : <script type="text/javascript" language="javascript"> window.location.href = " ms-excel:ofe|u| https://mytenant.sharepoint.com/MyLib/MyExcel.xlsx"; </script> You can use MS Office apps URL scheme names to open any office document in client app from SharePoint. List of MS Office apps URL scheme names: ms-word: ms-powerpoint: ms-excel: ms-visio: ms-access: ms-project: ms-publisher: ms-spd: ms-infopath: To know more about URL scheme, Click Here .

Administrator is not able to change user’s picture in User Profile in SharePoint Admin Center

For some users Admin is able to change picture by going to User Profile -> Manage user profile option. But for some users , Admin is not able to change pictures & SharePoint is showing the message “ Only user can change this photo ”. Admin can delete the photo but can’t upload. Here is the way to change user’s picture. Just go to Manage User Profile option form SharePoint Admin Center -> User Profile and search for the user. Now modify the user & search for the property “Picture Exchange Sync State”. You will see that it’s value is non zero. Just change it to Zero (0) & save it. Now reopen this profile again. You will see the option to update the image.

Get Web Part Title and Add Link / Text / Image to the right side of the web part title

Here is the code to get web part title and then add image or text or link in web part title and right align that. You have to put this code in Script editor web part or put this code in a file & store somewhere & provide link to master page or provide link to content editor web part // Function to add link/text/icon in right side of the web part title  $(document).ready(function () {     var className='.ms-webpart-titleText';     $(".ms-webpart-chrome-title span h2").each(function(inx){                var webPartTitle = $(this).text();                         //Check web part title         if(webPartTitle.indexOf("My Web Part Title")>=0)         {             var openUrl ="javascript:OpenPopUpPageWithTitle(\""+_spPageContextInfo.siteServerRelativeUrl+"/Style Library/MyFolder/MyPage.aspx?IsDlg=1\", RefreshPage, null, null, \"My Page Title\"); return false;";                         $(this).prepend("&

Unable to create publishing pages in the pages library in SharePoint 2013

Go to  Original Post   Reproduction Steps: 1) Browse to: https://contoso.com/site/myteam 2) site Actions 3) View All Site Content 4) Pages 5) Library Tools > Documents 6) New Document 7) Page 8) Get an error message saying: An unexpected error has occurred. Troubleshoot issues with Microsoft SharePoint Foundation. Correlation ID: 5a3ab0c7-9b95-4c20-a5a7-04637fe0a120 Date and Time: 2013/12/04 04:19:04 PM When you pull the ULS logs you see: Microsoft.SharePoint.Publishing.InvalidPublishingWebException: The site is not valid. The ‘Pages’ document library is missing. at Microsoft.SharePoint.Publishing.PublishingWeb.GetPublishingListWithCleanup(PublishingListType list, Boolean throwExceptionOnInvalidWeb) at Microsoft.SharePoint.Publishing.Internal.CodeBehind.BasePageSettingsPage.get_PageListRoot() at Microsoft.SharePoint.Publishing.Internal.CodeBehind.BasePageSettingsPage.SetParentUrlLabel() at Microsoft.SharePoint.Publishing.Internal.CodeBehind.BasePageSettingsPage.LoadValues() at Micro

10 jQuery snippets for SharePoint 2010

A good post which let you know through jQuery: Text manipulation Check the URL Timestamp Change the attribute Change CSS Add expand / collapse web parts Modify form field Check site template Welcome message Append today’s date Open post

Updates

New Software Available for Download •  FAST Search Server 2010 with Service Pack 2 •  Office Web Apps with Service Pack 2 •  Project Server 2010 with Service Pack 2 •  Search Server 2010 with Service Pack 2 •  SharePoint Server 2010 with Service Pack 2 •  SharePoint Server 2010 Language Pack with Service Pack 2 •  SharePoint Server 2010 Service Pack 2

Download ebook : SharePoint Designer Tutorial

Download ebook Book Description SharePoint is a web-based collaboration and document management platform from Microsoft.  Microsoft   Office   SharePoint  Designer (SPD) is a WYSIWYG HTML editor and web design program, which has replaced FrontPage, and is the ideal environment for working with pages on a SharePoint site. This book is ideal for people new to SharePoint Designer who need to put together a working SharePoint site as quickly as possible. If you who want to get started, and finished, as quickly as possible, this book is for you. You won't just learn how to use SharePoint Designer; you'll see how to use it to put together a SharePoint site. Book Details Publisher: Packt Publishing By: Mike Poole ISBN: 978-1-84719-442-8 Year: 2008 Pages: 188 Language: English File size: 5.3 MB File format: PDF

Make field title bold

Use below given jQuery to make bold field title. $("h3[class^='ms-standardheader']:contains('Assigned To')").css("font-weight", "Bold"); $("h3[class^='ms-standardheader']:contains('Description')").css("font-weight", "Bold"); $("h3[class^='ms-standardheader']:contains('Status')").css("font-weight", "Bold"); $("h3[class^='ms-standardheader']:contains('Priority')").css("font-weight", "Bold");

Advanced Microsoft Content Management Server Development

Download ebook : Advanced Microsoft Content Management Server Development Working with the Publishing API, Placeholders, Search, Web Services, RSS, and SharePoint Integration Book Description Microsoft Content Management Server 2002 is a dynamic web publishing system with which you can build websites quickly and cost-efficiently. MCMS provides the administration, authoring, and data management functionality, and you provide the website interface, logic, and workflow.  Microsoft   SharePoint  Portal  Server  (SPS) also features in the book. SPS 2003 enables enterprises to deploy an intelligent portal that seamlessly connects users, teams, and knowledge so that people can take advantage of relevant information across business processes to help them work more efficiently. Book Details Publisher: Packt Publishing By: Andrew Connell ,  Angus Logan ,  Lim Mei Ying , Stefan Gobner ISBN: 978-1-90481-153-4 Year: 2005 Pages: 544 Language: English File size: 8.7 MB File format: PDF Download ebook

SharePoint 2007 Interview Questions and Answers

What is Microsoft Windows SharePoint Services? How is it related to Microsoft Office SharePoint Server 2007?   Windows SharePoint Services is the solution that enables you to create Web sites for information sharing and document collaboration. Windows SharePoint Services -- a key piece of the information worker infrastructure delivered in Microsoft Windows Server 2003 -- provides additional functionality to the Microsoft Office system and other desktop applications, and it serves as a platform for application development. Office SharePoint Server 2007 builds on top of Windows SharePoint Services 3.0 to provide additional capabilities including collaboration, portal, search, enterprise content management, business process and forms, and business intelligence. What is Microsoft SharePoint Portal Server?   SharePoint Portal Server is a portal server that connects people, teams, and knowledge across business processes. SharePoint Portal Server integrates information from various syste