Hi, fellows
I have json like that
{{ label: "labelOne",
name: "name1",
startDate: "date1"}
, {
label: "labelTwo",
name: "name2",
startDate: "date2"
}
}
I want with javascript to get list of all startDate property.
With that logic I can get all labels
var items = exhibit.getDefaultCollection().getRestrictedItems();
So if I filter only to the first item, getRestrictedItems() returns
array [labelOne]
The question is how to get value of property 'startDate' which in that
case is "date1"?
Thanks in advance
--
You received this message because you are subscribed to the Google Groups
"SIMILE Widgets" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/simile-widgets?hl=en.