Posts

Download Visakhapatnam Tirupati AC Double Decker Express Act

Image
Drive the VSKP TPTY Double Decker Express from New Guntur to Ongole with BZA WAP4 DD Express Ready to depart from New Guntur,drive it till Ongole."  Thanks to Mr.Shaik Abdul for Route. Thanks to Mr.Vinay Datta, Mr.Gaurav Virdi, Mr.Amarjeet Singh Flora, Mr.Rajesh Varadarajan for their Models . How to add Missing Locos & Coaches in Consists File https://youtu.be/ZvQzFr4gEpI Subscribe My Channel For More Videos : https://www.youtube.com/c/TechChaitu                                                       Download Act

What is _spPageContextInfo ?

_spPageContextInfo is a  JavaScript context variable, which will rendered for each SharePoint page. _spPageContextInfo holds few proprieties which will be useful in JavaScript and client object model code.  _ spPageContextInfo has below properties:  webServerRelativeUrl  webAbsoluteUrl siteAbsoluteUrl serverRequestPath layoutsUrl webTitle webTemplate tenantAppVersion isAppWeb webLogoUrl webLanguage currentLanguage currentUICultureName currentCultureName env nid fid clientServerTimeDelta updateFormDigestPageLoaded siteClientTag crossDomainPhotosEnabled webUIVersion webPermMasks pagePersonalizationScope userId userLoginName systemUserKey alertsEnabled siteServerRelativeUrl allowSilverlightPrompt themedCssFolderUrl themedImageFileNames To know properties of _spPageContextInfo, go to view page source and find text with "_spPageContextInfo".

Set Choice Field Allow 'Fill-in' Choice option As TRUE For all the Lists in Site Collection Programmatically using C# CSOM in SharePoint Online

Here I demonstrate how to update Choice column property AllowFillInChoice as True for all the Lists in Site Collection using console application using System ; using System.Collections.Generic ; using System.Linq ; using System.Text ; using System.Threading.Tasks ; using Microsoft.SharePoint.Client ; using System.Security ; namespace AllowFillInChoice { class Program { static void Main ( string [] args) { using ( var ctx = new ClientContext( "https://@@@@@@@.sharepoint.com/sites/Dev/" )) { string userName = "---------@-------.onmicrosoft.com" ; string pwd = "--------" ; var securePassword = new SecureString(); ; foreach ( char c in pwd) { securePassword.AppendChar(c); } securePassword.MakeReadOnly(); try {

Filter with NULL value using REST API in SharePoint

$filter=FIeldName ne null url: _spPageContextInfo.webAbsoluteUrl+"/_api/Web/Lists/GetByTitle('Products')/Items?$select=Name,Price,Size&$filter= Size ne null ", The above URL returns the items not having Size field value as Null . ne - Not Equal                     

Introduction To SharePoint Framework

Image
SharePoint Framework is also abbreviated as SPFx. SharePoint Framework offers modern technologies, Node-based development, TypeScript etc. that are applied to SharePoint and Office 365 development. Earlier, we used to create  web-parts  (rectangular boxes with defined functionality) and even business users knew what web-parts are. In SharePoint Framework, these web-parts are termed as  Client web-parts . From a technology perspective, they are quite different, but from a user perspective, they are the same rectangular widgets that the users can add on their pages. In addition, we know about Add-In model and the Iframe-based integration, which we used in our daily SharePoint development. History of SharePoint Development Farm Solutions The development in SharePoint started with Farm Solutions, WSPs, full trust code. This approach was very powerful and developers could literally do whatever they wanted to do on the SharePoint Farm. However, it made upgrades very difficul

Apple Unveils iPhone 8, Plus, iPhone X; Facial Recognition, Wireless Charging Are Key Features

Image
Apple unveiled three new iPhone models on Monday, including a top-of-line handset described as "the biggest leap forward" since the original iPhone 10 years ago. Apple chief executive Tim Cook announced the premium iPhone X -- pronounced 10 -- as well as a new iPhone 8 and 8 Plus. Cook, speaking at the first event at the new campus theater named for the late Apple co-founder Steve Jobs, said the latest flagship handset is a milestone for the company a decade after the first iPhone release. "Ten years later it is only fitting that we are here in this place, on this day to reveal a product that will set the path for technology for the next decade," Cook said, calling the iPhone X "the biggest leap forward since the original iPhone." The iPhone X has an edge-to-edge screen and uses facial recognition to unlock the device, and improved "super retina" display with improved graphics and resolution. Apple senior vice president Phil Schiller said

Prerequisites To Build SharePoint Solutions With Typescript

Image
TypeScript was developed and introduced by Microsoft. TypeScript is object oriented programming language which is considered as a super set of JavaScript. TypeScript cannot be used directly on SharePoint platforms. TypeScript code has to be precompiled to JavaScript before deploying it on SharePoint. TypeScript has compiler (tsc) to compile the code from TS to JS. The compiler produces a JavaScript file from a TypeScript source file We can install TypeScript for Visual Studio from Microsoft site (https://www.microsoft.com/en-us/download/details.aspx?id=48593). For other versions of Visual Studio, the download links are available from http://www.typescriptlang.org/index.html#download-links. Create a new SharePoint 2016 - Empty project (or SharePoint 2013). Fill in the site URL and select "Deploy as sandbox solution" option.   On Visual Studio, navigate to Tools -> NuGet Package Manager -> Manage NuGet Packages for solution. Install the Type