1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <!DOCTYPE html>
| <html>
| <head>
| <title></title>
| <meta http-equiv="content-type" content="text/html; charset=UTF8"/>
| <link rel="stylesheet" type="text/css" href="css/ng-grid.css">
| <style>
| .gridStyle {
| border: 1px solid rgb(212, 212, 212);
| width: 400px;
| height: 300px
| }
| </style>
| <script type="text/javascript" data-main="js/main" src="js/require.js" charset="UTF8"></script>
| </head>
| <body data-ng-controller="mainController">
| <span>{{test}}</span>
| <button ng-click="load()">Load Module That Uses ngGrid</button>
| <div ng-include="partialUrl"></div>
| </body>
| </html>
|
|