Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
I want to delete a property of a node, so I have written something like this -
var params={};var propKey="somekey"+"@Delete";params[propKey] = "some value";params["_charset_"] ="utf-8";$CQ.post("/path/to/my/node",params,null);
above code is not deleting from the node. Kindly advice!
Solved! Go to Solution.
Sam,
You can delete a property in node as mentioned below..
CQ.HTTP.post('/path/to/my/node', null, { propname: null });}
hope this will work for you.
View solution in original post
Views
Likes
Replies