Hello,
Does anyone know if there's a way of adding a tooltip to custom buttons one adds to the form?
I have an item list with a datarow column. Inside this column I'm creating a button like so:
<div class="subelements-action-button">
<button class="webcon-button standard-focus subelements-action-button__delete-row webcon-button--padding-small standard-focus webcon-button--icon-button no-background th-hover" tabindex="0" type="button" onclick="onClickNotForMe({BRP:55})" title="Not for me">
<i class="icon ms-Icon ms-Icon--UserRemove ms-Icon--standard" aria-hidden="true" data-disabled="false"></i>
</button>
</div>
Basically, I'm replicating the buttons from the action column. I know I can add the title="some text" to the button to have a default tooltip. But I'd like to use the built in tooltips. Please see the attached images to see what I mean.
Anyone know how to get that?