Expand my Community achievements bar.

Adaptive form through XML Schema

Avatar

Level 3

Hi, 

I am trying to create an adaptive form based on example -  https://helpx.adobe.com/aem-forms/6/adaptive-form-xml-schema-form-model.html  

I am using XSD for creating the form.  The issue is I am not able to create Radio Button in XSD. So far I am only able to create drop-downs. 

I am using following XSD for radio button - 

 <xs:complexType name="myInfoType">
                 <xs:sequence>

             <xs:choice>
      <xs:element name="employee" type="employee"/>
      <xs:element name="member" type="member"/>
    </xs:choice>
                </xs:sequence>

        </xs:complexType>

0 Replies