IntelliSense not working for xml in list item

SyntaxEditor Web Languages Add-on for Windows Forms Forum

Posted 15 years ago by bespalov
Version: 4.0.0282
Platform: .NET 2.0
Environment: Windows 7 (64-bit)
Avatar
Example to reproduce:

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <xs:element name="RManager">
        <xs:complexType>
            <xs:sequence>
                <xs:choice maxOccurs="unbounded">
                    <xs:element name="Method">
                        <xs:complexType>
                            <xs:attribute name="Type" type="xs:string" use="required"/>
                            <xs:attribute name="Name" type="xs:string" use="required"/>
                        </xs:complexType>
                    </xs:element>
                    <xs:element name="RightsRule">
                        <xs:complexType>
                            <xs:attribute name="Name" type="xs:string" use="required"/>
                            <xs:attribute name="Rights" use="required">
                                <xs:simpleType>
                                    <xs:list>
                                        <xs:simpleType>
                                            <xs:restriction base="xs:string">
                                                <xs:enumeration value="Create"/>
                                                <xs:enumeration value="Delete"/>
                                                <xs:enumeration value="Edit"/>
                                            </xs:restriction>
                                        </xs:simpleType>
                                    </xs:list>
                                </xs:simpleType>
                            </xs:attribute>
                        </xs:complexType>
                    </xs:element>
                </xs:choice>
            </xs:sequence>
            <xs:attribute name="Inheritance" type="xs:boolean" use="required"/>
            <xs:attribute name="UpdatePeriod" type="xs:unsignedLong" use="optional"/>
        </xs:complexType>
    </xs:element>
</xs:schema>

I expected to see the elements of enumeration in IntelliSense, if i do not use list Tag i can see the enumeration elements.

Tested with actual version

Greetings

Comments (1)

Posted 15 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Thanks for the post, we'll have it working for the next build.


Actipro Software Support

The latest build of this product (v24.1.0) was released 2 months ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.