I am trying to create option lists for service plans & security groups in an openstack environment. I am using the same for VMware environment as well which is working fine. For OpenStack, it does not load the service plans & security groups.
Dependent field is cloud input fieldname.
Service Plan
provisionTypeCode should be in number.
you can get it from /api/provision-types?code=openstack.
Security Groups
request script should have the below
results.siteId = input.fnGroups
results.zoneId = input.fnZones
results.poolId = input.fnResourcePools
results.networkId = input.fnNetworks
Dependent field is looking for the customOption field name. Unless you have a customOption/Input on your form with the field name clouds, you are not refreshing that list off of a cloud selection. Looks like from your above you are needing to make it dependent on fnZones?
I have custom option for cloud and fieldname for the same in “clouds” (<%=customOptions.clouds%>). It does a refresh but did not find any service plan or security group.