Hi,
Add a rule on the field you want to control the tooltip with, and have it call a custom function “changeTooltip” in the “Run these functions / trigger these rules” field.
Then add this to the custom js:
function changeTooltip(){
spjs.dffs.data.tooltipObj.TheFieldNameYouWantToChange = "New tooltip text";
}
Yes,
You should be able to add a tooltip in custom html if you inspect an existing one and recreate the “help icon code” – changing the “id” and adding a custom one in the “spjs.dffs.data.tooltipObj” as shown above.