我有两个表,我想通过使用表行中的单个选择下拉列表或选择多个复选框并批量更新范围来过滤它们。
用户应该能够检查记录,选择顶部下拉状态,然后更新范围。如果状态大于或等于 1,则进入一个表,如果小于,则进入另一表。
小提琴http://jsfiddle.net/TheFiddler/hxz06sd7/
如何使用复选框根据所选值更新选中的值?
选择
<select ng-options="item.value as item.displayName for item in StatusDropDown" ng-model="person.status" ng-change="updateSelected()"></select>
updatedSelected 应该采用选中的行并过滤:
$scope.updateSelected = function(statusarg){
//how to set status for selected and update tables
}