В документации по http://docs.dojocampus.org/dojox/grid/DataGrid#required-css сказано, что вам нужен этот css:
<style type="text/css">
@import "/moin_static163/js/dojo/trunk/dojox/grid/resources/Grid.css";
@import "/moin_static163/js/dojo/trunk/dojox/grid/resources/tundraGrid.css";
.dojoxGrid table { margin: 0; } html, body { width: 100%; height: 100%;
margin: 0; }
</style>
Я использовал это, который тоже работал:
<link rel="stylesheet" type="text/css" href="script/dojox/grid/resources/Grid.css" />
<link rel="stylesheet" type="text/css" href="script/dojox/grid/resources/tundraGrid.css" />
<style type="text/css">
.dojoxGrid table { margin: 0; } html, body { width: 100%; height: 100%; margin: 0; }
</style>
В моем приложении у меня также был конфликт с моим глобальным CSS, который я исправил с помощью высоты: 999 пикселей вместо 100%.
<table dojoType="dojox.grid.DataGrid" store="store1"
query="{ Title: '*' }" clientSort="true"
style="width: 100%; height: 999px;" rowSelector="20px">