app.controller('CountriesCtrl', function($scope, $http, $routeParams, $timeout) { // customer $scope.countryTable = { name: 'Countries', controller: 'country', function: 'getForOverview', // Panel class panelClass: 'panel-trainingskampen', pageLimit: 25, fields: [ 'id', 'dutch_name', 'is_camp_country', ], fieldDetails:{ 'id': { 'label': 'ID', 'hideList': true, 'hideEdit': true }, 'dutch_name': { 'label': 'Land', }, 'is_camp_country': { 'label': 'Trainingskamp land', 'type': 'boolean', 'booleanOn': 1, 'booleanOff': 0, } }, buttons: { 'C': { 'id': 'c', 'name': 'Voeg land toe', 'cancelName': 'Annuleren', 'confirmName': 'Voeg toe', 'confirmClass': 'success', 'inline':false, 'header':true, 'icon': 'fa-plus-square', 'action': 'create', }, 'R':{ 'id': 'r', 'inline': false, }, 'U': { 'id': 'u', 'name': 'Bewerk', 'label': 'Bewerk', 'cancelName': 'Annuleren', 'confirmName': 'Wijzig', 'confirmClass': 'success', 'inline':true, 'icon':'fa-pencil', 'action': 'update', }, 'D': { 'id': 'd', 'inline': false, } } } })