- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 09:23 AM
UI Page:
<?xml version="1.0" encoding="utf-8" ?> <j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null"> <a href ='/kb?id=kb_article_view&sysparm_article=KB0021078'target='_blank'>Click here to know about Story Points</a>; </j:jelly>
Error Message: Error at line (3) The reference to entity "sysparm_article" must end with the ';' delimiter.
Referred this Error Message in Hi Support KB Article and there seems to be property to be set to true and this is already true.
Also, tried changing & to &, %26 but nothing worked. Any help on this is much appreciated
Screenshot:
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 10:20 AM
Replaced the code as below and it worked.
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<a href="/kb?id=kb_article_view&sysparm_article=KB0021078'target='_blank'>Click Here</a>;
</j:jelly>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 09:26 AM - edited 08-24-2023 09:27 AM
Hello @Hari7 ,
please try this
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<a href ='/kb?id=kb_article_view&sysparm_article=KB0021078&target=_blank'>Click here to know about Story Points</a>;
</j:jelly>
You added an extra single quote after sysparm_article which should be replaced by &.
Hope this helps
Mark my answer correct if this helps you
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 09:43 AM
No, still the same error message.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 10:17 AM
Hello @Hari7
try these steps
Go to sys_properties.LIST table
-->Seach for property with name 'glide.ui.escape_all_script'
-->Set the value to true. Note that only users with the security_admin role can make the changes by elevating the privilege.
refer to this article
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1113649
Hope this helps
mark the answer correct if this helps you
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 10:20 AM
Replaced the code as below and it worked.
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<a href="/kb?id=kb_article_view&sysparm_article=KB0021078'target='_blank'>Click Here</a>;
</j:jelly>