Angular UI Grid Demo bug

时间:2016-12-19 00:59:36

标签: angularjs grid ui-grid

学习Angular UI Grid,相信official tutorial有一个bug。 enter image description here

这是我的代码local.html:

<!doctype html>
<html ng-app="app">
<head>
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular-touch.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular-animate.js"></script>
    <script src="http://ui-grid.info/docs/grunt-scripts/csv.js"></script>
    <script src="http://ui-grid.info/docs/grunt-scripts/pdfmake.js"></script>
    <script src="http://ui-grid.info/docs/grunt-scripts/vfs_fonts.js"></script>
    <script src="/Scripts/ui-grid.js"></script>
    <script src="/Content/ui-grid.css"></script>

    <style>
        .grid {  width: 500px;  height: 250px;}
    </style>

    <script>
        var app = angular.module('app', ['ngTouch', 'ui.grid']);

        app.controller('MainCtrl', ['$scope', function ($scope) {

            $scope.myData = [
              {
                  "firstName": "Cox",
                  "lastName": "Carney",
                  "company": "Enormo",
                  "employed": true
              },
              {
                  "firstName": "Lorraine",
                  "lastName": "Wise",
                  "company": "Comveyer",
                  "employed": false
              },
              {
                  "firstName": "Nancy",
                  "lastName": "Waters",
                  "company": "Fuelton",
                  "employed": false
              }
            ];
        }]);
    </script>
</head>
<body>
    <div ng-controller="MainCtrl">
        <div id="grid1" ui-grid="{ data: myData }" class="grid"></div>
    </div>
</body>
</html>

使用VS 2015社区。 ui-grid.js是最新的ui-grid - v3.2.9 - 2016-09-21,由NuGet安装。 我最初在另一个大项目中测试,测试其他代码/文件是否干扰了行为者,我创建了一个新的简单web项目来测试这个,还将数据.js文件的内容移动到.html上面。 验证不需要jQuery文件。

1 个答案:

答案 0 :(得分:1)

这一行应该是标记而不是标记,它导致.css未加载:

<script src="/Content/ui-grid.css"></script>