I have this code for buttons and I want to shows the tooptips for disabled button. This works fine in Firefox and IE, but does not work in Chrome. In Chrome, only the buttons that are enabled showed the tooltip.
<div *ngFor"let btn of buttons">
<button [tooltip]="'Tooltip'" [disabled]="btn.disable">
</div>