Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Is there any way to get the Ids without getting the IPublishedContent objects?
I would like to do something like this, but this does not work for me:
var Result = node.GetPropertyValue<IEnumerable<int>>("propertyName")
Thanks
Have you tried int[] instead?
int[]
Worst case, you could just get it as a string, and do the split/parse yourself.
I have tried the following types:
<IEnumerable<int>> <IEnumerable<string>> <List<int>> <List<string>> <int[]> <string[]>
All of them returning null... :-/
If you just do <string> you should get a comma separated string.
<string>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Get only Ids from Multinode TreePicker
Is there any way to get the Ids without getting the IPublishedContent objects?
I would like to do something like this, but this does not work for me:
Thanks
Have you tried
int[]
instead?Worst case, you could just get it as a string, and do the split/parse yourself.
I have tried the following types:
All of them returning null... :-/
If you just do
<string>
you should get a comma separated string.is working on a reply...