1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
ngAfterContentInit()
{
let that = this;
$( document ).ready(function()
{
$("TABLE TBODY TD A").tooltip({
items: "[popup]",
open: function( event, ui ) {$('.ui-tooltip').show(); },
content: function(callback)
{
console.log($(this).attr('popup'));
//$.get('http://localhost:4200/carte_simple/' + $(this).attr('popup'), {}, function(data) {console.log('ici');callback(data);});
that.httpclient.get('http://localhost:4200/carte_simple/' + $(this).attr('popup')).subscribe((data: any) => { console.log(data); });
}
});
});
} |
Partager