I'm building a website using angularjs and i'm getting data from a webservice. I need to populate that data to a datatable and create an edit button for each row. After some investigation i came up with this
我正在用angularjs建立一个网站,我正在从一个网络服务中获取数据。我需要将数据填充到一个datatable中,并为每一行创建一个编辑按钮。经过调查,我想到了这个
The problem is that the ng-click isn't working probably because i need to compile the html i injected to the table cell. I've tried that in several ways but unfortunately i'm still very new to angular and i don't seem to understand how i can accomplish that. I really need help with this one.
问题是,ng-click不能工作,可能是因为我需要编译我注入到表单元格的html。我已经尝试了好几种方式,但不幸的是,我对角度仍然很陌生,我似乎不明白我如何能做到这一点。这件事我真的需要帮助。
This is my directive:
这是我的指令:
dialogApp.directive('myTable', function ($compile) {
return {
restrict: 'E, A, C',
link: function (scope, element, attrs, controller) {
var dataTable = element.dataTable(scope.options);
scope.$watch('options.aaData', handleModelUpdates, true);
function handleModelUpdates(newData) {
var data = newData || null;
if (data) {
dataTable.fnClearTable();
dataTable.fnAddData(data);
}
}
},
scope: {
options: "="
}
};});
The controller:
控制器:
dialogApp.controller('DataTableTestController', ['$scope', function($scope){
$scope.coisas = "coisas";
$scope.botaoEdit = function(a){
console.log(a);
};
$scope.options = {
"sDom": '<"H"lf>t<"F"ip>',
"bStateSave": true,
"bPaginate": false,
"bLengthChange": false,
"bFilter": true,
"bSort": true,
"bInfo": true,
"bAutoWidth": false,
"sPaginationType": "full_numbers",
aoColumns: [{
"sTitle": "name"
}, {
"sTitle": "price"
}, {
"sTitle": "category"
}, {
"sTitle": "action"
}, null],
"aaSorting": [[ 0, "asc" ]],
aoColumnDefs: [
{ "bSortable": true, "aTargets": [0] },
{ "bSortable": false, "aTargets": [1,2,3,4] }
],
bJQueryUI: true,
aaData: []
};
var dbStuff = [
{
"name": "Stuff1",
"price": 10000000.00,
"description": "Expensive Stuff",
"wanna":"buy"
},
{
"name": "Stuff2",
"price": 20000000.00,
"description": "Oh my...",
"wanna":"have money"
}
]
for (var key in dbStuff){
$scope.options.aaData.push([dbStuff[key].name,
dbStuff[key].price,
dbStuff[key].description,
dbStuff[key].wanna,
"<button ng-click=\"botaoEdit("+dbStuff[key].name+")\">test button</button>"
]);
}
$scope.counter = 0; }])
And the HTML:
HTML:
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/themes/redmond/jquery-ui.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.8.2/css/jquery.dataTables.css">
<div ng-app="tableExample">
<div ng-controller="DataTableTestController">
{{ coisas }}
<table my-table options="options" class="jquery-datatables"></table>
</div>
</div>
1 个解决方案
#1
22
Yes, you're right, ng-click directive wasn't compiled by angular. So the most straight forward way is to use onclick listener:
是的,你是对的,ng-click指令不是由角编译的。所以最直接的方法就是使用onclick listener:
"<button onclick=\"angular.element(this).scope().botaoEdit('"+dbStuff[key].name+"')\">test button</button>"
Don't forget to add quotes: botaoEdit('')
, in your fiddle you try to access Stuff1 variable :)
不要忘记添加引号:botaoEdit("),在您的小提琴中尝试访问Stuff1变量:)
In the end, I think the best way is to use some grid plugin or ng-repeat, that would build rows for your table when data recieved. In this approach ng-click in your rows will work fine.
最后,我认为最好的方法是使用一些网格插件或ng-repeat,当数据收到时,它会为您的表构建行。在这种方法中,在行中使用ng-click可以正常工作。
#1
22
Yes, you're right, ng-click directive wasn't compiled by angular. So the most straight forward way is to use onclick listener:
是的,你是对的,ng-click指令不是由角编译的。所以最直接的方法就是使用onclick listener:
"<button onclick=\"angular.element(this).scope().botaoEdit('"+dbStuff[key].name+"')\">test button</button>"
Don't forget to add quotes: botaoEdit('')
, in your fiddle you try to access Stuff1 variable :)
不要忘记添加引号:botaoEdit("),在您的小提琴中尝试访问Stuff1变量:)
In the end, I think the best way is to use some grid plugin or ng-repeat, that would build rows for your table when data recieved. In this approach ng-click in your rows will work fine.
最后,我认为最好的方法是使用一些网格插件或ng-repeat,当数据收到时,它会为您的表构建行。在这种方法中,在行中使用ng-click可以正常工作。