我想做的是制作一个函数,这样我就可以改变我的 ng-grid 列宽的高度。除了我的控制器的范围需要与我的指令中的范围进行通信这一事实之外,这无关紧要。
.directive('getWidth', function(){
return{
controller: 'QuotesCtrl',
link: function(scope){
scope.smRowHeight = function(the value i want){
scope.theRowHeight = the value i want;
}
}
}
})
我只想能够进入我的 html 并说嘿这个 div 我想要高度 20
<div getWidth = '20'></div>
我环顾四周,找不到与这件事有关的任何东西。顺便说一句,在我的 QuotesCtrl 中,我像这样初始化了行高
$scope.theRowHeight;
有什么建议么?