Download presentation
Presentation is loading. Please wait.
Published byFelicity Russell Modified over 9 years ago
11
var clientContext = new SP.ClientContext(siteUrl); var oWebsite = clientContext.get_web(); this.collList = oWebsite.get_lists(); clientContext.load(collList); clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
23
var web; var webCollection; context = new SP.ClientContext.get_current(); webCollection = web.getSubwebsForCurrentUser(null); context.load(web); context.load(webCollection); context.executeQueryAsync(function () { … } listDiv = $("#result"); listDiv.append(' ' + web.get_title() + ' Sites ');
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.