Hi, all,
Our Apex is 24.2.11,
I have a button and I want to show our users the number of basket items as a superscript, please see photos. Label shows fine during page load, but it only shows as text instead of HTML during DA update (photos), any suggestions? Thank you!
// basket add dialog close event
let label='<span class="t-Icon t-Icon--left fa fa-shopping-basket" aria-hidden="true">';
let count=apex.item("P12_COUNT").getValue();
label=label + '<sup>[' + count+ ']</sup></span>';
$("#P12_BK_ID").text(label);



