我正在寻找一种更好的方法来在click
弹出窗口上实现线条/条形图,以显示基于所点击的标签(x轴)的项目列表。
我在应用控制器中的当前实现是这样的:
$scope.onClick = function (points, evt) {
//console.log(points, evt);
// length of points array is determined by how many series you have
if (points.length > 0) {
// call service to get some data based on label that was clicked on
GetKVP.get({
groupId: $scope.GroupId,
type: $scope.Grouping,
label: points[0].label, // label is the same no matter how many points you have
}).$promise.then(
function (data) {
if (data.success) {
if (data.kvps.length > 0) {
var html = "<div class='temp popover' style='display: block; position: absolute; top: " + evt.pageY + "px; left: " + evt.pageX + "px;'><div class='popover-inner'><h3 class='popover-title'>KVPs</h3><div class='popover-content'>";
angular.forEach(data.kvps, function (val, key) {
html += "<a class='' data-ng-click='OpenKVP(" + val.Id + ")'>" + val.Name + "</a><br>";
});
html += "</div></div></div>";
$("div.app-container").append(html);
} else {
// do nothing
}
}
}, function (error) {
// report that error has occured
});
}
// remove popover after 30 seconds
//todo: this needs a better implementation as it doesn't take into account how long it takes to fetch the data
$timeout(function () {
$("div.temp").remove();
}, 30000); // deafult delay is 0 milliseconds
};
总结当用户点击图表时,我的应用程序会提取与标签对应的项目列表,并在弹出窗口中显示。
我的问题是,当我点击弹出窗口ngClick
绑定中的项目时,不会触发。让我相信我错误地绑定了我的弹出模板。
我可以用jQuery做点什么但是为什么我在第一时间使用角度呢?正确?
或者,我可以创建一个正确绑定的部分/内联模板。但是通过这种实现,我不知道如何通过每次点击来实例化多个弹出窗口。
价:
AngularJS - scrip
angular-chart.js
UI Bootstrap - popover
更新:
我偶然发现this answer建议使用$compile
。通过这样做,角度解析html,然后连接我的ngClick
。
导致以下代码的以下更改:
$("div.app-container").append($compile(html)($scope));