I'm trying to remove dynamicaly a Quicklaunch item in SharePoint 2010 (SandBoxed) using javascript Client object Model.
The code runs correctly. The selected item is deleted from my current quickLaunchNodeCollection but when I reload my quickLaunchNodeCollection the selected item is still existing.
function RemoveQuickLaunchNode() {
var clientContext = new SP.ClientContext('/');
this.nodeToRemove = this.quickLaunchNodeCollection.get_item(8);
this.nodeToRemove.deleteObject();
clientContext.executeQueryAsync(Function.createDelegate(this, this.onRefresh), Function.createDelegate(this, this.Failedmsg));
}
Someone can help me ??
Thanks .
nodeToRemove?NavigationNodeCollectiondoes not contain a delete in its JS form: msdn.microsoft.com/en-us/library/ff408721.aspx – moontear Nov 14 '11 at 21:28