- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi,
You nodeConfiguration for the node I believe is STORAGE_SCHEME_SINGLE_ITEM(which is the default). You should change it to STORAGE_SCHEME_MANUAL. Then you can publish different items on the node and it won't be overwritten. Currently, with single item , the id is always itemID and has only one value i.e the last value.
On storage scheme as manual , you can have different items with different itemIDs(specified by you) on the same node.
You can change the node configiuration of this node from the dev console(easier) or programmatically.
If you are doing programmatically, you should do something like this
var nodeConf:NodeConfiguration = new NodeConfiguration();
nodeConf.itemStorageScheme = NodeConfiguration.STORAGE_SCHEME_MANUAL;
collectionNode.createNode("testing",nodeConf);
Hope this helps.
Thanks
Hironmay Basu
Views
Replies
Total Likes