You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error range highlight the last attribute (in this case version)
although it should highlight the first or second xmlns:ts.
Problem comes from XMLSyntaxErrorCode with AttributeNSNotUnique
Please note there are the same problem with attribute without NS (AttributeNotUnique):
<aattr=""attr=""attr2="" />
Today attr2 is higlighted although it should be attr which should be highligted.
To fix this 2 problems, we must use arguments which contains the attribute name to highlight by using XMLPositionUtility.selectAttributeNameFromGivenNameAt I think.
The text was updated successfully, but these errors were encountered:
If we have duplicate prefix (see following sample with duplicate
xmlns:tns
) :The error range highlight the last attribute (in this case version)
although it should highlight the first or second xmlns:ts.
Problem comes from
XMLSyntaxErrorCode
withAttributeNSNotUnique
Please note there are the same problem with attribute without NS (
AttributeNotUnique
):Today attr2 is higlighted although it should be attr which should be highligted.
To fix this 2 problems, we must use
arguments
which contains the attribute name to highlight by usingXMLPositionUtility.selectAttributeNameFromGivenNameAt
I think.The text was updated successfully, but these errors were encountered: