2015-09-02 63 views
0

在我的情況我使用http://vitalets.github.io/angular-xeditable/#editable-table編輯整個表,如果表有兩個或更多的行並單擊編輯,我更新了一些值(文本值),單擊事件我想要在控制器中獲取這些更新的值。你能給些建議麼。 http://jsfiddle.net/0amredgj/3/將數據寫入本地模態的角度xeditable

var app = angular.module("app", ["xeditable"]); 
app.run(function(editableOptions) { 
    editableOptions.theme = 'bs3'; 
}); 

app.controller('Ctrl', function($scope) { 
$scope.user = { 
name: 'awesome user', 
    name2: 'awesome222 user', 
    name3: 'awesome user', 
    name4: 'awesome222 user' 
}; 

$scope.result = function(data){ 
alert($scope.user.name) 
    alert($scope.user.name2) 
    alert($scope.user.name3) 
    alert($scope.user.name4) 
} 
}); 

回答

0

試試這個小提琴:

<input ... e-name="username"> 

fiddle