Posts

Navjeevan Express Details || Chennai to Ahmedabad || నవజీవన్ ఎక్స్‌ప్రెస్

Image

Loco Failed of Coromandel Express Rescue by Hubli WDG4 Twin Loco

Image
Due to cyclone it's raining very badly in Nellore. Coromandel Superfast Express Loco Failed at Nellore South Station. You have to Rescue by Hubli WDG4 Twin Loco Coromandel Superfast Express Loco Failed at Nellore South Station. Msts Game and addons credits to their respective owners. Copy Activities,Paths,Services and Traffic to SCR folder in routes folder. Copy Consists folder to Trains Folder How to download and install MSTS Indian Train Simulator in PC  https://youtu.be/wnoDIxmgq1M 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

Download Narayanadri Express loco Change from Diesel to Electric Act

Image
Loco Change for Narayanadri Express from Diesel to Electric at Guntur Junction Loco Change for Narayanadri Express from Diesel to Electric. Msts Game and addons credits to their respective owners. Copy Activities,Paths,Services and Traffic to RailIndia in routes folder. Copy Consists folder to Trains Folder How to download and install MSTS Indian Train Simulator in PC  https://youtu.be/wnoDIxmgq1M 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

Download Puri Yesvantpur Garib Rath Express loco reversal Act

Image
Drive the Puri Yesvantpur Garib Rath Express from Puri to Khurda Road with LGD WAP4 GR Express Ready to depart from Puri,drive it till Khurda and do loco reversal at Khurda Junction." Msts Game and addons credits to their respective owners. Copy Activities,Paths,Services and Traffic to RailIndia in routes folder. Copy Consists folder to Trains Folder How to download and install MSTS Indian Train Simulator in PC https://youtu.be/wnoDIxmgq1M 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

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 {