$scope.gridOptions = {
data: 'myData',
canSelectRows: false,
displaySelectionCheckbox: false,
footerRowHeight: 35,
showFooter: true,
showGroupPanel: true,
showColumnMenu: true,
showFilter: true,
enableColumnResize: true,
sortInfo: { fields: ['SignupDate'], directions: ['asc'] },
columnDefs: [
{ field: 'Account', displayName: 'Account Number', width: '160', visible: $scope.isUserAdmin() },
{ field: 'LineOfBusiness', displayName: 'Commodity Type', width: '130' }
]//,
//plugins: [new ngGridCsvExportPlugin()]
};