使用 ag-grid headerCellRenderer 加入 select 或 input 時避免觸發排序
.directive("stoppropagation", function () {
return {
link: function (scope, element, attrs, ngModel) {
element.on('click', function (event) {
event.stopPropagation();
});
}
}
})
return {
link: function (scope, element, attrs, ngModel) {
element.on('click', function (event) {
event.stopPropagation();
});
}
}
})
留言