大家好,我正在使用有角度的烤面包机,我可以根据某些条件自动填充烤面包机,例如:在我的表格中,如果该字符存在于我的表格列中,我会匹配一些字符,角度烤面包机应该填充,我怎么能做到这一点..
这是我的代码
$scope.set_color = function (row) {
var inputString = row.Subject;
for (i = 0; i < inputString.length; i++) {
var findMe = "call prepull ";
if (inputString.toLowerCase().indexOf(findMe) > -1) {
return { 'background-color': '#FFCCCB' }
//toaster
toaster.pop('info', "Hot Rush", "Found new Hot Rush");
}
}
}
我在视图中添加了这个
<toaster-container toaster-options="{'time-out': 3000, 'position-class': 'toast-bottom-left', 'close-button':true, 'animation-class': 'toast-bottom-left'}"></toaster-container>
并在模块和控制器中添加了依赖性
angular.module('App', ['Services', 'smart-table', 'ui.bootstrap', 'toaster', 'ngAnimate'])
.controller('PendingOrderController',
function ($scope, $http, Services, $window, $timeout, $rootScope, toaster) {
}
我怎么能做到这一点??