質問

Is it possible to use the call SP.Navigation.set_useShared(true) to inherit the top link bar in the javascript to create a sub site?

役に立ちましたか?

解決

You can do it using sp.publishing.js

var webNavSettings = new SP.Publishing.Navigation.WebNavigationSettings(context, currentWeb);
var navigation = webNavSettings.get_globalNavigation(); 
navigation.set_source(3);     
webNavSettings.update();         
context.executeQueryAsync(function(){   alert("Navigation Modification Successful");         },function(sender,args){       alert(args.get_message());       });
ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top