IntroductionIn this article you will see how to get all the site content types in SharePoint 2010 using ECMAScript.(Navigate to the site, click on Site Actions. Click on Site Settings. In the Galleries section, click on Site Content Types).Steps Involved
var contentTypeCollection;
function getSiteContentTypes() { var clientContext = new SP.ClientContext.get_current(); if (clientContext != undefined && clientContext != null) { var web = clientContext.get_web(); this.contentTypeCollection = web.get_contentTypes(); clientContext.load(this.contentTypeCollection); clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed)); } }
function onQuerySucceeded() { var contentType = 'Site Content Types:\n ' var contentTypeEnumerator = this.contentTypeCollection.getEnumerator(); while (contentTypeEnumerator.moveNext()) { var content = contentTypeEnumerator.get_current(); contentType += content.get_name() + '\n'; } alert(contentType); }
function onQueryFailed(sender, args) { alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace()); }</script> <input id="btnGetSiteContentTypes" onclick="getSiteContentTypes()" type="button" value="Get Site Content Types" />
ReferenceSP.Web.contentTypes Property - http://msdn.microsoft.com/en-us/library/ee554839.aspx SummaryThus in this article you have seen how to get all the site content types 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: