Add a function like this to the Custom JS textarea.
Show tooltip:
function showTooltip(){
$("#dffs_TheFieldName div.customTooltip").show();
}
Hide tooltip
function hideTooltip(){
$("#dffs_TheFieldName div.customTooltip").hide();
}
Change “TheFieldName” for your FieldInternalName.
Call the “showTooltip” or “hideTooltip” from your rules – in the “Run these functions / trigger these rules” field.
Alexander
-
This reply was modified 9 years, 2 months ago by Alexander Bautz. Reason: Wrong function name in the "hideTooltip" function