Reputation: 61
how to resolve "Escape Special character" Issue(as shown in pic) on Interactive Grid
Upvotes: 1
Views: 3577
Reputation: 175
The Escape special characters attribute is available in the Security section of the property sheet for Display Only interactive grid columns. The Security section is only visible when "Show All" is selected on the property sheet.
Upvotes: 1
Reputation: 635
Sorry I can't add comments. Can you try for name column in your query something like:
utl_i18n.unescape_reference(Name)
for example:
select utl_i18n.unescape_reference('Classes & Subjects') from dual
or
select utl_i18n.unescape_reference('Classes & Subjects') from dual
both returns
Classes & Subjects
Upvotes: 0