Hello,
I have a cascading field with 5 levels,
When I return all of the options, I get only the parents:
CustomField x = ComponentAccessor.getCustomFieldManager().getCustomFieldObject("customfield_xxxxx"); //Hierarchy cascading field
Options optionsHierarchy = optionsManager.getOptions(x.getConfigurationSchemes().listIterator().next().getOneAndOnlyConfig());
return optionsHierarchy;
I want to get the children of this parent, how can I do it?
I'm not taking the value from the issue, I take it like I did in the code.
Daniel