#101388
dusrkdldlr
Member

const notesTemplate = document.createElement(“template”);
notesTemplate.id = “notesTemplate”;
notesTemplate.innerHTML = `<button
data-id=”{{id}}”
onclick=”alert(‘{{value}}’);”
class=”template-button”
style=”width: 100%; height: 100%; overflow:hidden; text-overflow: ellipsis;”
>Details</button>`;
document.body.appendChild(notesTemplate);
and I can’t run this example either