为什么dgrid无法从hello world教程中渲染正确的网格

问题描述 投票:0回答:1

这仅显示准系统html行和列,但是显然我需要拖动行和列。这是dgrids hello world教程中的确切代码。

<!DOCTYPE html>
   <html>
   <head>
       <meta charset="utf-8">
       <title>Tutorial: Hello dgrid!</title>
   </head>
   <body>
       <div id="grid"></div>
       <!-- this configuration assumes that the dgrid package is located
           in the filesystem as a sibling to the dojo package -->
      <script src="/Users/theUser/node_modules/dojo/dojo.js"
          data-dojo-config="async: true"></script>
      <script>
  require([ 'dgrid/Grid', 'dojo/domReady!' ], function (Grid) {
      var data = [
          { first: 'Bob', last: 'Barker', age: 89 },
          { first: 'Vanna', last: 'White', age: 55 },
          { first: 'Pat', last: 'Sajak', age: 65 }
      ];
      var grid = new Grid({
          columns: { 
              first: 'First Name',
              last: 'Last Name',
              age: 'Age'
          }
      }, 'grid');
      grid.renderArray(data);
  });
      </script>
  </body>
  </html>
grid dojo dgrid
1个回答
0
投票

上面的代码缺少the tutorial中的第6行:

<link rel="stylesheet" href="path/to/dgrid/css/dgrid.css">
© www.soinside.com 2019 - 2024. All rights reserved.