Is there anyway to turn off tool tips on controls?
If there is no text - it displays the field text.
If you add in a ' ' space it displays as a blank box.
Our QA would like it to not show at all.
Is there anyway to turn off tool tips on controls?
If there is no text - it displays the field text.
If you add in a ' ' space it displays as a blank box.
Our QA would like it to not show at all.
Best answer by RaymondJVR
Good day
I am not aware of any out of the box ui configuration changes or properties that could be used to disable tooltips however you can use the following jquery on a literal enabled data label's text property (xss needs to be disabled).
Alternatively you can add the script to a expression and call the expression inside of the literal enabled data label's text property (xss needs to be disabled) on a rules execution.
Keep in mind that the below scripts will disable all tooltips, some script modification would be required to make is specific to a control.
<script>$('*').tooltip({disabled: true});</script>OR
<script>$('body').tooltip({disabled: true});</script>
Should you feel that this post is of use and or an accurate solution to the raised question, I kindly encourage you to mark it as such using the 'Mark as Solution', 'Kudo' andor ‘Me Too’ options.
Kind Regards
Raymond
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.