Reading Time: 2minutes On 22nd May, amazing Microsoft Ignite The Tour 2019 event, Microsoft held its Mumbai stop on the Ignite the Tour 2019 at the Bombay Convention & Exhibition Centre. Mumbai kick starts with over 100+ sessions and workshops by 350+experts. Attend the event to know the best practices on the future of …
Reading Time: 2minutes What is SharePoint Dev Kitchen? The Microsoft Developer Kitchen is an INVITE-ONLY event held in Redmond, US with the SharePoint framework development teams and product managers for select partners. Cognizant has been granted one attendee. This event is held once a year and will only accept something less than 100 …
Reading Time: 2minutes While migrating share point documents we need to migrate document Library Files and Folders from one site to another. It is easy to copy the files from one document library using the Open with Explorer command under the Library tab in Library Tools, but it won’t copy the meta data. Also we …
Reading Time: 7minutes Best Practices on Naming convention When creating columns, always create it with a short name first. This should be a fairly unique version of the full name, without any spaces, punctuation etc. This is because the column internal name is generated from that first name; if you allow spaces then …
Reading Time: < 1minute SharePoint REST/ODATA API https://office.sharepoint.com/sites/mysitecollection/_api/web/lists/getbytitle(‘Tasks’)/Items?$select=Title&$filter=Title eq ‘Jenkins’ and Status ne ‘Open’ SharePoint REST API Syndax Example Syndax $select $select=Title,Author $orderby asc &$orderby=Title asc desc &$orderby=Title desc $filter $filter=Title eq ‘Jenkins 05’ $expand $select=Title,Products/Name&$expand=Products/Name $top items?$top=10 datetime $filter=Created ge datetime’2015-04-01T00:00:00′ guid _api/web/lists(‘4eff143c-0b29-420a-93fb-ed33a1efb934’)/Items and Title eq ‘Jenkins’ and Status ne ‘Open’ or Title …
Reading Time: < 1minute Hi All, Most of the time we receive a requirement to stop edit other than creator and Owners. most of them suggest custom solution – Event receiver/Event Handler. There is a out of box solution for SharePoint and Office 365 Go into the List Settings, Advanced Settings, and you should be able …
Reading Time: < 1minute Get Current User data using jQuery/JavaScript Add a Content editor webpart in InfoPath form New page, add the below code <script type=”text/javascript” language=”javascript”> var user; var email; var firstname; var surname; function getUserInfo() var clientContext = new SP.ClientContext(); user = clientContext.get_web().get_currentUser(); clientContext.load(user); clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed)); } function onQuerySucceeded() { …
Reading Time: 3minutes What is SharePoint? It is the business collaboration platform for the enterprise and the web, allows individuals in an organization to easily create and manage their own collaborative Web sites, Simplifies how people find and share information across boundaries, and enabling better informed decisions. It seamlessly integrates with Windows and …
Reading Time: 4minutes Many companies implement SharePoint for sake of implementing it and expect it to change the way the business operates. Those companies are setting themselves up for a disappointment, but SharePoint is not to blame. SharePoint is a brilliant platform that can serve as a basis for very powerful solutions that …
Reading Time: 2minutes In SharePoint document library there is an option in action menu i.e “open in Windows Explorer”,When we click this one we can see all the documents in a window explorer,where we can drag and drop the documents for the document library. But in case of a SharePoint generic list we …