
Hello,
If the schema has the following rule for an element..i.e. element aaa should come only after bbb. When I load the schema and use the intelliprompt feature it shows both the elements in the list. Editor should not show the element bbb element in the list until element bbb is specified. Only after specifying aaa, intelliprompt should show the element bbb. Is it possible to have this feature?If the wrong sequence is followed, validation does happen and errors will be displayed. But I guess this will simply increase the user's time when writing the xml.
<xs:sequence minOccurs="0">
<xs:element name="aaa" maxOccurs="1" minOccurs="1">
<xs:complexType>
<xs:attribute name="type" use="required" />
</xs:complexType>
</xs:element>
<xs:element name="bbb" maxOccurs="1" minOccurs="1">
<xs:complexType>
<xs:attribute name="type" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
Thanks,
Ashwini
If the schema has the following rule for an element..i.e. element aaa should come only after bbb. When I load the schema and use the intelliprompt feature it shows both the elements in the list. Editor should not show the element bbb element in the list until element bbb is specified. Only after specifying aaa, intelliprompt should show the element bbb. Is it possible to have this feature?If the wrong sequence is followed, validation does happen and errors will be displayed. But I guess this will simply increase the user's time when writing the xml.
<xs:sequence minOccurs="0">
<xs:element name="aaa" maxOccurs="1" minOccurs="1">
<xs:complexType>
<xs:attribute name="type" use="required" />
</xs:complexType>
</xs:element>
<xs:element name="bbb" maxOccurs="1" minOccurs="1">
<xs:complexType>
<xs:attribute name="type" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
Thanks,
Ashwini