Issue
If a checkbox is disabled and has a tooltip assigned to it, the tooltip will not be shown.
Reproduction steps
- Create an Angular form with a form control named
test.
- Add a
p-checkbox element with the attributes formControlName="test" and pTooltip="test".
- Disable the form control in the component with
this.form.controls.test.disable.
- The tooltip will not be shown anymore.
Workaround
Add [style.pointer-events]="'auto'" to the p-checkbox element.
Issue
If a checkbox is disabled and has a tooltip assigned to it, the tooltip will not be shown.
Reproduction steps
test.p-checkboxelement with the attributesformControlName="test"andpTooltip="test".this.form.controls.test.disable.Workaround
Add
[style.pointer-events]="'auto'"to thep-checkboxelement.