Material: md-tooltip: Doesn't work inside md-checkbox

Created on 19 Jan 2015  路  3Comments  路  Source: angular/material

If you try to put a tooltip inside of a checkbox it doesn't work. It ends up removing the tooltip from the generated html.

 <md-checkbox ng-model="quote.Options.Other.SingleShipment">Single Shipment
        <md-tooltip>Some description about this</md-tooltip>
    </md-checkbox>

image

Most helpful comment

+1, but you can make it work with

<div>
    <md-checkbox></md-checkbox>
    <md-tooltip md-direction="top">
        Hello
    </md-tooltip>                        
</div>

All 3 comments

This issue and #1101 maybe linked.

+1, but you can make it work with

<div>
    <md-checkbox></md-checkbox>
    <md-tooltip md-direction="top">
        Hello
    </md-tooltip>                        
</div>

image
Its fine with tooltip but the events are not working, please help along ng-model because I am trying to toggle container along checkbox checked.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

bobber205 picture bobber205  路  3Comments

WebTechnolog picture WebTechnolog  路  3Comments

robertmesserle picture robertmesserle  路  3Comments

buzybee83 picture buzybee83  路  3Comments

diogodomanski picture diogodomanski  路  3Comments