无法在camunda表行上使用选中/未选中的复选框逻辑

时间:2018-04-03 17:43:01

标签: javascript angular camunda camunda-modeler

我想在我的表中添加check all复选框,它可以将已检查的数据收集到一个数组中(我将其设置为camunda嵌入式表单环境)这里是我的代码,应该可以帮助我做到这一点:

$scope.checkAll = function () {
        if ($scope.selectedAll) {
            $scope.selectedAll = true;
        } else {
            $scope.selectedAll = false;
        }
        angular.forEach($scope.selectedDocuments, function (item) {
            item.selectedDocuments = $scope.selectedAll;
        });

    };

p.s selectedDocuments是我的数组

这是我的HTML代码:

<table name ="table" id="myTable" class="table table-hover  table-list-search" data-table="order-table" style="width:100%;" cellspacing="0">
            <thead>
                <tr>
                    <th style="width:80px; height:25px;"><input style="width:25px; height:25px;" type="checkbox" ng-model="selectedAll" ng-click="checkAll()"></th>
                    <th style="width:140px;">id</th>
                    <th style="width:305px;">organizationName</th>
                    <th style="width:305px;">priority</th>
                     <th>&nbsp;</th>
                </tr>           
            </thead>
            <tbody ng-repeat="item in jsonData" >
                <tr>
                    <td><input type="checkbox" ng-change="sync(item.Selected, item)"  ng-checked="isChecked(item.id) ng-model="item.Selected""  /></td> 
                    <td>{{item.id}}</td>
                    <td>{{item.organizationName}}</td>

                     <td>{{item.priority}}</td>                   
                     <td><button class="btn btn-default btn-xs" ng-click="toggle($index)"><span class="glyphicon glyphicon-eye-open"></span></button></td>


    </tr>   
    </table>

但是当我部署这个代码时,我通常会遇到这样的错误:意外令牌或者如果它没有错误地部署我无法在主复选框上单击选择所有td-es(我的意思是如果它部署没有错误我不能使用它正确)我应该改变什么才能使这段代码有效?

1 个答案:

答案 0 :(得分:0)

你的第13行是错误的。那里你有一些错误的引号。

这是您的代码行

<td>
    <input type="checkbox" 
      ng-change="sync(item.Selected, item)"  
      ng-checked="isChecked(item.id) 
      ng-model="item.Selected""  
    />
</td> 

这就是它应该是什么样子

<td>
   <input type="checkbox" 
      ng-change="sync(item.Selected, item)"  
      ng-checked="isChecked(item.id)" 
      ng-model="item.Selected" 
    />
</td> 

以这种方式试试。