Idea Summary make available the value(s) of hidden columns in the HTML generated by IRs
Use Case sometimes you need to perform actions retrieving a hidden value from an IR
Preferred Solution (Optional)
Where/when/how do you want them to be available?
What actions?
Execute some logic basing on the value, typically a PK, retrieved from a hidden row/column combination. Currently it seems to me that such PK must be visible in the IR in order to get its value. If I remember well in classic reports hidden columns were still present although not visible to the user. May be there is some workaround to achieve the same result, but I'd like to have some supported method for doing this in order to avoid problems in the future if the underlying logic/layout changes.
This is already achievable in both classic and interactive reports by referencing hidden column values in data-* attributes or elements in the mark-up of HTML Expressions or Link Attributes on displayed columns:
data-*
<data value="#EMPNO#">#ENAME#</data>
<span data-id="#EMPNO#" data-sal="#SAL#">#ENAME#</span>