0

I am new to Angular Js and I am creating a Grid using Angular Js ng-Grid, it has a column with check-boxes but those are aligned to left, if anyone can explain me how to align them to center would be appreciate.

here is controller's grid code

$scope.currencyGrid = {
            data: 'gridDisplayObjectList',
            multiSelect: false,
            selectedItems: $scope.selectedRow,
            enableColumnResize: false,
            enableRowSelection: true,
            columnDefs: [
                  {
                      field:'IsSelect',
                      displayName: 'Select',
                      cellTemplate: '<div><input type="checkbox" ng-model="row.entity.IsSelect" ng-checked="row.IsSelect""></div>'
                  }
            ]
        };

enter image description here

thanks in advance

1 Answers1

0

Are you using bootstrap frame work? If so try tag for the check box it will align center

udaya
  • 9,598
  • 15
  • 48
  • 67