davidmoten / xsd-forms

Generates web forms from xml schema documents (xsd)
137 stars 51 forks source link

Parent element may needs to be included along with child Element display #24

Open maheshbhutkar opened 7 years ago

maheshbhutkar commented 7 years ago

Consider below sample xml,

      **<PublicFunds>
        <BenefitAvailable>false</BenefitAvailable>
      </PublicFunds>
      <AttendanceAllowance>
        <BenefitAvailable>false</BenefitAvailable>
      </AttendanceAllowance>
      <HousingAllowance>
        <BenefitAvailable>false</BenefitAvailable>
      </HousingAllowance>**

Here it will generate Checkboxes with same name...

In this case parent tag should be included...