multiple categories not getting added to Content

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2008 03:22 AM
Hi,
This is my current scenario. I am trying to upload a document from scratch through webscript. I am having multiple categories to be attached to this content.
This is my code
now the problem I am facing is although catNodes[0],catNodes[1] contain values in them. Only last value assigned gets added to document overriding the previous one. The problem is
I even tried
I have even tried the following links http://forums.alfresco.com/en/viewtopic.php?f=36&t=15494 and this
http://forums.alfresco.com/en/viewtopic.php?f=36&t=10048
But in vain. Any ideas?
This is my current scenario. I am trying to upload a document from scratch through webscript. I am having multiple categories to be attached to this content.
This is my code
[b]upload.addAspect("cm:generalclassifiable");upload.properties["cm:categories"] = catNodes[0];upload.properties["cm:categories"] = catNodes[1];[/b]
now the problem I am facing is although catNodes[0],catNodes[1] contain values in them. Only last value assigned gets added to document overriding the previous one. The problem is
upload.properties["cm:categories"]
is not able to assign an array as alist of categories.I even tried
upload.properties["cm:categories"] = catNodes;
. But then it doesn't add anythingI have even tried the following links http://forums.alfresco.com/en/viewtopic.php?f=36&t=15494 and this
http://forums.alfresco.com/en/viewtopic.php?f=36&t=10048
But in vain. Any ideas?
Labels:
- Labels:
-
Archive
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2008 08:01 AM
Hello,
You have to add the categories in this way:
This should work.
You have to add the categories in this way:
var categories = new Array();categories["cm:categories"] = catNodes;upload.addAspect("cm:generalclassifiable", categories);
This should work.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2009 04:44 AM
thanks, it's working!
