I build an app based on angular + ng-ui-bootstrap + ng-googleCharts
I want display google charts data table containing a ui.bootstrap popover in certain cell. I populate rows of table with data from database.
I fetch data with angular $resource service and then parse data with function, which also create html markup for ui.bootstrap popover with popover angular directive. But this popover don't work.
I suggest, that this is because data inserted to table needs to be recompiled by Angular. I searched web and found solutions to this with angular $compile service.
I found custom directive, called angular-html-bind, that recompile content of that directive element after each change of binded model, so one can dynamically bind other angular directive to view, but I don't know, how to use modus operandi from angular-html-bind in my data table.
I created plunker that describes my effort. Sadly, the angular-html-bind directive does not work in that plunker and I don't know why, but that Plunker contains all necessary modules.
Plunker HERE
Can YOU see any way to my desired goal (that is insert tooltip/popover inside data table cell).