Hi experts,
I have strange problem with my custom template after APEX upgrade.
I use custom template for my item with some JS enhancements. I can't reference #CURRENT_ITEM_HELP_TEXT# anymore. When I tried to to use #CURRENT_ITEM_INLINE_HELP_TEXT# it works just fine. But I can't use It that way. I need to use #CURRENT_ITEM_HELP_TEXT#. Do you have some idea how to solve It ?
Here is my template which worked on my previous APEX instance (I tried some custom static text instead of #CURRENT_ITEM_HELP_TEXT# and It worked):
<div class="popup info-popup c-icon c-icon--pict-info c-link--info">
<span class="info-popup-area" id="#CURRENT_ITEM_ID#">
<span class="info-popup-content">
<a href="javascript:CloseTooltipster('.info-popup.tooltipstered');" aria-hidden="true" class="c-modal__close-btn c-icon c-icon--close--thin"></a>
<span class="info-popup-head">#CURRENT_ITEM_HELP_LABEL#</span>
<span class="info-popup-text">#CURRENT_ITEM_HELP_TEXT#</span>
</span>
</span>
</div>
Regards,
J