ngGrid checkbox應用

jiangxiankun123發表於2015-08-27

 $scope.mySelections = []; //初始化核取方塊的值


$scope.gridOptions = {


       data: 'LDTLInfos',//列表的原始資料
       rowTemplate: '<div style="height: 100%"><div ng-style="{ \'cursor\': row.cursor }" ng-repeat="col in renderedColumns" ng-class="col.colIndex()" class="ngCell ">' +
           '<div class="ngVerticalBar" ng-style="{height: rowHeight}" ng-class="{ ngVerticalBarVisible: !$last }"> </div>' +
           '<div ng-cell></div>' +
           '</div></div>',
           enableRowSelection: true,
           enableCellEditOnFocus: true,
           showSelectionCheckbox: true,

           selectedItems:$scope.mySelections,//宣告覆選框選中所獲取值

           enablePinning: true,
           checkboxHeaderTemplate:"<div></div>",
       columnDefs: [{
           field: 'acode',
           displayName: '程式碼',
           enableCellEdit: false,
           width:80
       }
       
       ],
       enablePaging: false,
       showFooter: false
     

   };

//以下是我的提交按鈕

$scope.submitYLZForm=function(isValid){

if(isValid){
//遍歷被選中核取方塊的值
angular.forEach($scope.mySelections,function(item){
   consolo.log(item);

                               });

}


}



相關文章