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 .

link|improve this question
Changes are like not persisted. – Miky_g971 Nov 14 '11 at 19:38
what is that you are trying to remove? if it is list or library there is a easy way to do it. – xgencoder Nov 14 '11 at 20:11
What do you mean with "when I reload my quickLaunchNodeCollection"? You mean you reload the page? Javascript is not persisted, that is correct. Or you mean that the change to quickLaunchNodeCollection is not persisted in Javascript? What is nodeToRemove? NavigationNodeCollection does not contain a delete in its JS form: msdn.microsoft.com/en-us/library/ff408721.aspx – moontear Nov 14 '11 at 21:28
Sorry to answer now. – Miky_g971 Nov 15 '11 at 16:09
@xgencoder , I'm trying to remove a quicklaunch Node. List or library does not matter to me, that can be both. – Miky_g971 Nov 15 '11 at 16:35
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.