Safari rendering label failed
I encountered an issue with the JS-Lib.
I wasn't able to preview nor print labels, that have been freshly created with demo connect (v.1.4.3.103).
If you like to preview my label the following error occurs: Error: The 'Rows' start tag on line 1 position 2256 does not match the end tag of 'Color'. Line 1, position 2264.
Upon further investigation of demo.connect.framework.full.js there has been a 'fix' to replace all <Color /> tags with <Color> </Color> tags using this regex: '/<Color (.+)/>/g'. This will cause an issue replace EVERYTHING after the Color name. Use something like this to replace empty tags without crushing the whole xml: '/<Color ((?!/Color).)*/>/g'
the labelxml:
DCD will provide the fixed version on next release. However you can comment out the code, and the xml file will need to have those closure tag along with <Color> </Color> like that.