Question

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?

Était-ce utile?

La solution

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());       });
Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top