Issue with Dot in XML Tag
I am encountering a problem with tags in an XML file I am working on. The issue arises from the presence of dots within the tags, such as <tag.state>
and </tag.state>
.
Unfortunately, JavaScript (specifically extJS) does not seem to parse tags that contain dots successfully.
The XML file was automatically generated, so I do not have control over the format of the tags. Is there a way to work around this issue?
I have attempted using both single (' ') and double (" ") quotes, but the problem still persists.
Example code snippet:
fields: [ 'tag.state']
or
fields: [ "tag.state"]