Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

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