Created
September 2, 2014 01:10
-
-
Save renatocantarino/3bd8d5c8579efcf50802 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var app = angular.module('myApp', ['ngGrid']); | |
app.controller('MyCtrl', function($scope) { | |
$scope.gridOptions = { | |
data: 'myData', | |
enablePinning: true, | |
columnDefs: [{ field: "Nome", width: 120 }, | |
{ field: "idade", width: 120 }, | |
{ field: "Nascimento", width: 120 }, | |
{ field: "Mesada", width: 120 }] | |
}; | |
$scope.myData = [{ Nome: "Ana", idade: 50, Nascimento: "20/01/2000", Mesada: "60,000" }, | |
{ Nome: "Bruno", idade: 43, Nascimento: "20/01/2001", Mesada: "70,000" }, | |
{ Nome: "Carlos", idade: 27, Nascimento: "20/01/2002", Mesada: "50,000" }, | |
{ Nome: "Diogo", idade: 29, Nascimento: "20/01/2006", Mesada: "40,000" }, | |
{ Nome: "Zico", idade: 34, Nascimento: "20/01/2003", Mesada: "30,000" }, | |
{ Nome: "Xuxa", idade: 50, Nascimento: "20/01/2002", Mesada: "60,000" }, | |
{ Nome: "Valdemor", idade: 43, Nascimento: "20/01/2004", Mesada: "70,000" }]; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment