In this article you will see how to check out a file from a document library in SharePoint 2010 using ECMAScript.IntroductionIn this article you will see how to check out a file from a document library in SharePoint 2010 using ECMAScript. I have a document library named "Shared Documents" which has the following document.I am going to check out that document using ECMAScript.Steps Involved
var list; var item; var file; function fileCheckOut() { var clientContext = SP.ClientContext.get_current(); if (clientContext != undefined && clientContext != null) { var webSite = clientContext.get_web(); this.list = webSite.get_lists().getByTitle("Shared Documents"); this.item = list.getItemById(16); this.file = this.item.get_file(); this.file.checkOut(); clientContext.load(this.file) clientContext.executeQueryAsync(Function.createDelegate(this, this.OnLoadSuccess), Function.createDelegate(this, this.OnLoadFailed)); } }
function OnLoadSuccess(sender, args) { alert(this.file.get_title() + " checked out successfully"); }
function OnLoadFailed(sender, args) { alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace()); }</script> <input id="btnFileCheckOut" onclick="fileCheckOut()" type="button" value="File Check Out" />
Reference1. SP.File.checkOut() Method - http://msdn.microsoft.com/en-us/library/ee658788.aspx SummaryThus in this article you have seen how to check out a file from a document library in SharePoint 2010 using ECMAScript.
You need to be a premium member to use this feature. To access it, you'll have to upgrade your membership.
Become a sharper developer and jumpstart your career.
$0
$
. 00
monthly
For Basic members:
$20
For Premium members:
$45
For Elite members: