Hello,
I'm trying to populate a form dropdown box with a category sublist. I'm using a macro in the forms field tab to populate the dropdown <select>
values.
Here is an example of my category directory structure.
Category
item 1
item 2
Academics
item A
item B
item 3
item 4
This macro successfully returns all Category Names.
SiteObjects.Categories.ItemsAsFields.CategoryName#
However, I'm needing to ONLY return items located within a subcategory (Academics) list.
Category Directorty ---> SubCategory Directory (Academics) --> List all items (item A, item B)
This macro gets me closer, however it returns additional system text that is not needed, i.e., "CMS.Taxonomy.CategoryInfo (cms.category)"
SiteObjects.Categories.Academics.ReferringObjects.All#
What I'd like the macro to return are the values "itemA, itemB".
What am I doing wrong?
Thanks for the help.