Skip to content

Instantly share code, notes, and snippets.

@jongravois
Created June 3, 2015 19:33
Show Gist options
  • Save jongravois/cfe8dbd48f7036a9a2f4 to your computer and use it in GitHub Desktop.
Save jongravois/cfe8dbd48f7036a9a2f4 to your computer and use it in GitHub Desktop.
<!doctype html>
<html ng-app="example">
<head>
<meta charset="utf-8">
<script>document.write('<base href="' + document.location + '" />');</script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/ag-grid/dist/angular-grid.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="bower_components/ag-grid/dist/angular-grid.css">
<link rel="stylesheet" type="text/css" href="bower_components/ag-grid/dist/theme-fresh.css">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<script src="app/app.js"></script>
</head>
<style>
.bold-and-red {
color: darkred;
font-weight: bold;
}
</style>
<body ng-controller="exampleCtrl">
<div style="height: 10%;">
<button ng-click="onHardRefresh()">Hard Refresh</button>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{{pending_view}}
</div>
<div style="height: 90%;" ag-grid="gridOptions" class="ag-fresh"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment