Skip to content

Commit

Permalink
Merge pull request SitePen#38 from SitePenBryanForbes/rename-tests
Browse files Browse the repository at this point in the history
Moved test_*.html to *.html and data files to test/data/*.
  • Loading branch information
SitePenKenFranqueiro committed Oct 21, 2011
2 parents 31eeb4c + 67d145e commit 5928b92
Show file tree
Hide file tree
Showing 34 changed files with 34 additions and 34 deletions.
4 changes: 2 additions & 2 deletions test/test_GridFromHtml.html → test/GridFromHtml.html
Expand Up @@ -67,7 +67,7 @@



require(["dgrid/GridFromHtml", "dojo/store/Memory", "dojo/store/Observable", "dojo/_base/declare", "dojo/parser", "dojo/query", "dgrid/test/data", "dojo/domReady!"],
require(["dgrid/GridFromHtml", "dojo/store/Memory", "dojo/store/Observable", "dojo/_base/declare", "dojo/parser", "dojo/query", "dgrid/test/data/base", "dojo/domReady!"],
function(GridFromHtml, Memory, Observable, declare, parser, query){

// GridFromHtml tests
Expand Down Expand Up @@ -184,4 +184,4 @@ <h2>3a: Testing numeric and boolean property (un)specification in GridFromHtml</
</table>

</body>
</html>
</html>
Expand Up @@ -24,7 +24,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dgrid/GridFromHtml", "dojo/store/Memory", "dojo/store/Observable", "dojo/_base/declare", "dojo/parser", "dojo/query","dgrid/Keyboard","dijit/form/Select", "dgrid/Editor", "dijit/form/DateTextBox", "dijit/form/HorizontalSlider", "dijit/form/NumberSpinner", "dojo/data/ObjectStore","dgrid/test/data", "dojo/domReady!"],
require(["dgrid/GridFromHtml", "dojo/store/Memory", "dojo/store/Observable", "dojo/_base/declare", "dojo/parser", "dojo/query","dgrid/Keyboard","dijit/form/Select", "dgrid/Editor", "dijit/form/DateTextBox", "dijit/form/HorizontalSlider", "dijit/form/NumberSpinner", "dojo/data/ObjectStore","dgrid/test/data/base", "dojo/domReady!"],
function(GridFromHtml, Memory, Observable, declare, parser, query, Keyboard, Select, Editor, DateTextBox, Slider, NumberSpinner, ObjectStore){

window.dgrid = { GridFromHtml: GridFromHtml };
Expand Down Expand Up @@ -75,4 +75,4 @@ <h2>2: Fully declarative GridFromHtml,
</tr>
</table>
</body>
</html>
</html>
4 changes: 2 additions & 2 deletions test/test_Grid_rendering.html → test/Grid_rendering.html
Expand Up @@ -90,7 +90,7 @@
name: {},
description: {label: "what to do", sortable: false}
};
require(["dgrid/Grid", "dgrid/OnDemandGrid", "dgrid/GridFromHtml", "dojo/store/Memory", "dojo/store/Observable", "dojo/_base/declare", "dojo/parser", "dojo/query", "dgrid/test/data", "dojo/domReady!"],
require(["dgrid/Grid", "dgrid/OnDemandGrid", "dgrid/GridFromHtml", "dojo/store/Memory", "dojo/store/Observable", "dojo/_base/declare", "dojo/parser", "dojo/query", "dgrid/test/data/base", "dojo/domReady!"],
function(Grid, OnDemandGrid, GridFromHtml, Memory, Observable, declare, parser, query){

// fully-programmatic tests
Expand Down Expand Up @@ -178,4 +178,4 @@ <h2>2c: Grid with no srcNodeRef (placed inside another domNode), id specified as
<h2>2d: Grid with no srcNodeRef (placed inside another domNode), dgrid / DOM node id autogenerated</h2>
<div class="test2d"></div>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion test/test_JsonRest.html → test/JsonRest.html
Expand Up @@ -31,7 +31,7 @@
];

window.grid = new (declare([Grid, Selection, Keyboard]))({
query: "data_rest.js",
query: "data/rest.js",
store: testStore,
columns: columns
}, "grid");
Expand Down
2 changes: 1 addition & 1 deletion test/test_OnDemand.html → test/OnDemand.html
Expand Up @@ -56,7 +56,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dojo/on", "dgrid/OnDemandList", "dgrid/OnDemandGrid","dgrid/Keyboard", "dgrid/Selection", "dgrid/Editor", "dijit/form/DateTextBox", "dijit/form/HorizontalSlider", "dijit/form/NumberSpinner", "dgrid/test/data", "dojo/_base/lang", "dojo/_base/declare", "dojo/_base/array", "dojo/_base/Deferred", "dojo/dom-construct", "dojo/store/Memory", "dojo/domReady!"],
require(["dojo/on", "dgrid/OnDemandList", "dgrid/OnDemandGrid","dgrid/Keyboard", "dgrid/Selection", "dgrid/Editor", "dijit/form/DateTextBox", "dijit/form/HorizontalSlider", "dijit/form/NumberSpinner", "dgrid/test/data/base", "dojo/_base/lang", "dojo/_base/declare", "dojo/_base/array", "dojo/_base/Deferred", "dojo/dom-construct", "dojo/store/Memory", "dojo/domReady!"],
function(on, List, Grid, Keyboard, Selection, Editor, DateTextBox, Slider, NumberSpinner, data, lang, declare, arrayUtil, Deferred, domConstruct, Memory){

// Create error store
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/test_autoheight.html → test/autoheight.html
Expand Up @@ -27,7 +27,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dgrid/test/data", "dojo/domReady!"],
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dgrid/test/data/base", "dojo/domReady!"],
function(List, Grid, Selection, Keyboard, declare){
var columns = [
{label: 'Column 1', field: 'name'},
Expand Down
2 changes: 1 addition & 1 deletion test/test_common_cases.html → test/common_cases.html
Expand Up @@ -64,7 +64,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dojo/on", "dgrid/List", "dgrid/OnDemandGrid", "dgrid/Tree", "dgrid/Editor", "dgrid/Selection", "dgrid/Keyboard", "dgrid/test/data", "dojo/_base/declare", "dojo/_base/array", "dojo/domReady!"],
require(["dojo/on", "dgrid/List", "dgrid/OnDemandGrid", "dgrid/Tree", "dgrid/Editor", "dgrid/Selection", "dgrid/Keyboard", "dgrid/test/data/base", "dojo/_base/declare", "dojo/_base/array", "dojo/domReady!"],
function(on, List, Grid, Tree, Editor, Selection, Keyboard, testStore, declare, arrayUtil){
console.log("loaded in " + (new Date().getTime() - start) + testStore);
var columns = { // you can declare columns as an object hash (key translates to field)
Expand Down
2 changes: 1 addition & 1 deletion test/test_complex_column.html → test/complex_column.html
Expand Up @@ -38,7 +38,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dgrid/OnDemandGrid", "dgrid/GridWithColumnSetsFromHtml", "dgrid/ColumnSet", "dgrid/Tree", "dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dojo/on", "dojo/parser", "dgrid/test/data", "dojo/domReady!"],
require(["dgrid/OnDemandGrid", "dgrid/GridWithColumnSetsFromHtml", "dgrid/ColumnSet", "dgrid/Tree", "dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dojo/on", "dojo/parser", "dgrid/test/data/base", "dojo/domReady!"],
function(Grid, GridFromHtml, ColumnSet, Tree, Selection, Keyboard, declare, on, parser, testStore){
var columnSets1 = [
[
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions test/test_dijit_layout.html → test/dijit_layout.html
Expand Up @@ -43,7 +43,7 @@
"dijit/Toolbar",
"dijit/form/Button",
// non-returns
"dgrid/test/data",
"dgrid/test/data/base",
"dojo/domReady!"
], function(Grid, Dialog, lang, declare, parser){

Expand Down Expand Up @@ -124,4 +124,4 @@
data-dojo-props="store: testStore, columns: gridCols"></div>
</div>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion test/test_editors.html → test/editors.html
Expand Up @@ -32,7 +32,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Tree","dgrid/Selection", "dgrid/Keyboard", "dgrid/Editor", "dijit/form/DateTextBox", "dijit/form/HorizontalSlider", "dijit/form/NumberSpinner", "dojo/_base/declare", "dgrid/test/data", "dojo/domReady!"],
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Tree","dgrid/Selection", "dgrid/Keyboard", "dgrid/Editor", "dijit/form/DateTextBox", "dijit/form/HorizontalSlider", "dijit/form/NumberSpinner", "dojo/_base/declare", "dgrid/test/data/base", "dojo/domReady!"],
function(List, Grid, Tree, Selection, Keyboard, Editor, DateTextBox, Slider, NumberSpinner, declare){
var columns = [
Editor({label: 'A Date', field: 'date'}, DateTextBox),
Expand Down
2 changes: 1 addition & 1 deletion test/test_editors2.html → test/editors2.html
Expand Up @@ -32,7 +32,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Tree","dgrid/Selection", "dgrid/Keyboard", "dgrid/Editor", "dijit/form/ToggleButton", "dijit/form/TimeTextBox", "dijit/form/Select","dojo/data/ObjectStore", "dijit/form/FilteringSelect", "dijit/Editor", "dojo/_base/declare", "dgrid/test/data", "dojo/domReady!"],
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Tree","dgrid/Selection", "dgrid/Keyboard", "dgrid/Editor", "dijit/form/ToggleButton", "dijit/form/TimeTextBox", "dijit/form/Select","dojo/data/ObjectStore", "dijit/form/FilteringSelect", "dijit/Editor", "dojo/_base/declare", "dgrid/test/data/base", "dojo/domReady!"],
function(List, Grid, Tree, Selection, Keyboard, Editor, ToggleButton, TimeTextBox, Select, ObjectStore, FilteringSelect, DijitEditor, declare){

stateStore = new ObjectStore({
Expand Down
Expand Up @@ -32,7 +32,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dgrid/Grid", "dgrid/Selection", "dgrid/Keyboard", "dgrid/Editor", "dijit/form/NumberSpinner", "dojo/_base/declare", "dgrid/test/data", "dojo/domReady!"],
require(["dgrid/Grid", "dgrid/Selection", "dgrid/Keyboard", "dgrid/Editor", "dijit/form/NumberSpinner", "dojo/_base/declare", "dgrid/test/data/base", "dojo/domReady!"],
function(Grid, Selection, Keyboard, Editor, NumberSpinner, declare){
var columns = [
Editor({
Expand Down
Expand Up @@ -46,7 +46,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dojo/on", "dgrid/List", "dgrid/OnDemandGrid", "dgrid/Tree", "dgrid/Editor", "dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dojo/_base/array", "dijit/_WidgetBase", "dgrid/test/data", "dojo/domReady!"],
require(["dojo/on", "dgrid/List", "dgrid/OnDemandGrid", "dgrid/Tree", "dgrid/Editor", "dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dojo/_base/array", "dijit/_WidgetBase", "dgrid/test/data/base", "dojo/domReady!"],
function(on, List, Grid, Tree, Editor, Selection, Keyboard, declare, arrayUtil, _WidgetBase, testStore){
var columns = { // you can declare columns as an object hash (key translates to field)
col1: Editor({label: 'Column 1 column 1 column 1'}, "text", "dblclick"),
Expand Down
2 changes: 1 addition & 1 deletion test/extensions/ColumnResizer.html
Expand Up @@ -48,7 +48,7 @@
<script type="text/javascript" src="../../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dgrid/OnDemandGrid", "dgrid/extensions/ColumnResizer", "dgrid/Selection", "dojo/_base/declare", "dgrid/test/data", "dojo/domReady!"],
require(["dgrid/OnDemandGrid", "dgrid/extensions/ColumnResizer", "dgrid/Selection", "dojo/_base/declare", "dgrid/test/data/base", "dojo/domReady!"],
function(Grid, ColumnResizer, Selection, declare, testStore){
columns = { // you can declare columns as an object hash (key translates to field)
col1: 'Column 1Column1Column 1 Column 1',
Expand Down
2 changes: 1 addition & 1 deletion test/extensions/ColumnResizer_complex.html
Expand Up @@ -35,7 +35,7 @@
<script type="text/javascript" src="../../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dgrid/OnDemandGrid", "dgrid/GridWithColumnSetsFromHtml", "dgrid/ColumnSet", "dgrid/Tree", "dgrid/Selection", "dgrid/Keyboard", "dgrid/extensions/ColumnResizer", "dojo/_base/declare", "dgrid/test/data", "dojo/domReady!"],
require(["dgrid/OnDemandGrid", "dgrid/GridWithColumnSetsFromHtml", "dgrid/ColumnSet", "dgrid/Tree", "dgrid/Selection", "dgrid/Keyboard", "dgrid/extensions/ColumnResizer", "dojo/_base/declare", "dgrid/test/data/base", "dojo/domReady!"],
function(Grid, GridFromHtml, ColumnSet, Tree, Selection, Keyboard,ColumnResizer, declare, testStore){
window.grid = declare([Grid, ColumnSet, Selection, Keyboard, ColumnResizer])({
store: testStore,
Expand Down
4 changes: 2 additions & 2 deletions test/extensions/DnD.html
Expand Up @@ -52,7 +52,7 @@
<script type="text/javascript" src="../../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dojo", "dgrid/List", "dgrid/OnDemandGrid","dgrid/Tree","dgrid/Selection", "dgrid/extensions/DnD", "dgrid/Keyboard", "dojo/dnd/Source", "dojo/_base/declare", "dojo/_base/lang", "dojo/_base/array", "dojo/_base/Deferred", "dgrid/test/data", "dojo/domReady!"],
require(["dojo", "dgrid/List", "dgrid/OnDemandGrid","dgrid/Tree","dgrid/Selection", "dgrid/extensions/DnD", "dgrid/Keyboard", "dojo/dnd/Source", "dojo/_base/declare", "dojo/_base/lang", "dojo/_base/array", "dojo/_base/Deferred", "dgrid/test/data/base", "dojo/domReady!"],
function(dojo, List, Grid, Tree, Selection, DndRow, Keyboard, DnDSource, declare, lang, arrayUtil, Deferred){
var
DnDGrid = declare([Grid, Selection, DndRow, Keyboard]),
Expand Down Expand Up @@ -199,4 +199,4 @@ <h2>Example of 2 grids w/ inter-grid DnD, sharing the same store</h2>
<div id="grid4"></div>
</div>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion test/test_headerless.html → test/headerless.html
Expand Up @@ -69,7 +69,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dojo/on", "dgrid/List", "dgrid/OnDemandGrid", "dgrid/Tree", "dgrid/Editor", "dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dijit/form/DateTextBox", "dijit/form/HorizontalSlider", "dijit/form/NumberSpinner", "dgrid/test/data", "dojo/domReady!"],
require(["dojo/on", "dgrid/List", "dgrid/OnDemandGrid", "dgrid/Tree", "dgrid/Editor", "dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dijit/form/DateTextBox", "dijit/form/HorizontalSlider", "dijit/form/NumberSpinner", "dgrid/test/data/base", "dojo/domReady!"],
function(on, List, Grid, Tree, Editor, Selection, Keyboard, declare, DateTextBox, Slider, NumberSpinner, testStore){
var columns = { // you can declare columns as an object hash (key translates to field)
col1: Editor({label: 'Column 1 column 1 column 1'}, "text", "dblclick"),
Expand Down
4 changes: 2 additions & 2 deletions test/test_mobile_grid.html → test/mobile_grid.html
Expand Up @@ -21,7 +21,7 @@
</script>
<script type="text/javascript" src="../../dojo/dojo.js"></script>
<script type="text/javascript">
require(["dojo/on", "dgrid/OnDemandGrid", "dgrid/extensions/ColumnResizer", "dojo/_base/declare", "dgrid/test/data", "dojo/domReady!"],
require(["dojo/on", "dgrid/OnDemandGrid", "dgrid/extensions/ColumnResizer", "dojo/_base/declare", "dgrid/test/data/base", "dojo/domReady!"],
function(on, Grid, ColumnResizer, declare, testStore){
var columns = { // you can declare columns as an object hash (key translates to field)
col1: 'Status',
Expand Down Expand Up @@ -74,4 +74,4 @@ <h1 data-dojo-type="dojox.mobile.Heading">View 2</h1>
</ul>
</div>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion test/test_performance.html → test/performance.html
Expand Up @@ -31,7 +31,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dgrid/test/data_perf", "dojo/domReady!"],
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dgrid/test/data/perf", "dojo/domReady!"],
function(List, Grid, Selection, Keyboard, declare, testPerfStore){
var columns = [
{ name: 'Column 0', field: 'id', width: '10%' },
Expand Down
Expand Up @@ -29,7 +29,7 @@
data-dojo-config="async: true"></script>

<script type="text/javascript">
require(["dojox/grid/DataGrid", "dojo/data/ObjectStore", "dgrid/test/data_perf", "dojo/domReady!"],
require(["dojox/grid/DataGrid", "dojo/data/ObjectStore", "dgrid/test/data/perf", "dojo/domReady!"],
function(DataGrid, ObjectStore, testPerfStore){
var layout = [
{ name: 'id', field: 'id', width: '10%' },
Expand Down
Expand Up @@ -30,7 +30,7 @@
<script src="../../dojo/dojo.js" data-dojo-config="async: true"></script>
<script>
var countWidgets; // function, defined within require callback
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Selection", "dgrid/Keyboard", "dgrid/Editor", "dijit/form/TextBox", "dijit/registry", "dojo/_base/declare", "dgrid/test/data_perf", "dojo/domReady!"],
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Selection", "dgrid/Keyboard", "dgrid/Editor", "dijit/form/TextBox", "dijit/registry", "dojo/_base/declare", "dgrid/test/data/perf", "dojo/domReady!"],
function(List, Grid, Selection, Keyboard, Editor, TextBox, registry, declare, testPerfStore){
var
TB = declare(TextBox, {
Expand Down
2 changes: 1 addition & 1 deletion test/test_selection.html → test/selection.html
Expand Up @@ -21,7 +21,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dojo/on", "dojo/_base/window", "dgrid/OnDemandGrid", "dgrid/Editor","dgrid/Selection", "dgrid/CellSelection", "dgrid/Keyboard", "dojo/_base/declare", "dgrid/test/data", "dojo/domReady!"],
require(["dojo/on", "dojo/_base/window", "dgrid/OnDemandGrid", "dgrid/Editor","dgrid/Selection", "dgrid/CellSelection", "dgrid/Keyboard", "dojo/_base/declare", "dgrid/test/data/base", "dojo/domReady!"],
function(on, win, Grid, Editor, Selection, CellSelection, Keyboard, declare, testStore){
var columns = {
col1: 'Column 1',
Expand Down
2 changes: 1 addition & 1 deletion test/test_selectors.html → test/selectors.html
Expand Up @@ -24,7 +24,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dojo/on", "dojo/_base/window", "dgrid/OnDemandGrid", "dgrid/Selector", "dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dgrid/test/data", "dojo/domReady!"],
require(["dojo/on", "dojo/_base/window", "dgrid/OnDemandGrid", "dgrid/Selector", "dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dgrid/test/data/base", "dojo/domReady!"],
function(on, win, Grid, Selector, Selection, Keyboard, declare, testStore){
var columns = { // you can declare columns as an object hash (key translates to field)
col1: Selector({ type: "checkbox" }),
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions test/test_skin.html → test/skin.html
Expand Up @@ -53,7 +53,7 @@ <h2>Test more skins!</h2>
// then add the rest of the dependencies for the test...
deps = deps.concat("dgrid/List", "dgrid/OnDemandGrid", "dgrid/Tree",
"dgrid/Selection", "dgrid/Keyboard", "dgrid/Editor",
"dojo/_base/declare", "dojo/dom-construct", "dgrid/test/data", "dojo/domReady!");
"dojo/_base/declare", "dojo/dom-construct", "dgrid/test/data/base", "dojo/domReady!");

require(deps,
function(css1, css2, List, Grid, Tree, Selection, Keyboard, Editor, declare, domConstruct, testStore){
Expand All @@ -79,7 +79,7 @@ <h2>Test more skins!</h2>

// add links to test all skins, w/ dgrid.css loaded first/last
for(i = 0; i < l; i++){
href = "test_skin.html?skin=" + skins[i];
href = "skin.html?skin=" + skins[i];
slhtml.push('<a href="' + href + '">' + skins[i] + '</a>');
sfhtml.push('<a href="' + href + '&skinFirst=true">' + skins[i] + '</a>');
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/test_treegrid.html → test/treegrid.html
Expand Up @@ -26,7 +26,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dojo/on", "dgrid/OnDemandGrid","dgrid/Tree","dgrid/Editor", "dgrid/Keyboard", "dgrid/Selection", "dojo/_base/declare", "dgrid/test/data", "dojo/domReady!"],
require(["dojo/on", "dgrid/OnDemandGrid","dgrid/Tree","dgrid/Editor", "dgrid/Keyboard", "dgrid/Selection", "dojo/_base/declare", "dgrid/test/data/base", "dojo/domReady!"],
function(on, Grid, Tree, Editor, Keyboard, Selection, declare, testStore){
var columns = [
Editor({label: ' ', field: 'bool', sortable: false}, "checkbox"),
Expand Down
2 changes: 1 addition & 1 deletion test/test_tundra_custom.html → test/tundra_custom.html
Expand Up @@ -42,7 +42,7 @@
<script type="text/javascript" src="../../dojo/dojo.js"
data-dojo-config="async: true"></script>
<script type="text/javascript">
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dgrid/test/data", "dojo/domReady!"],
require(["dgrid/List", "dgrid/OnDemandGrid","dgrid/Selection", "dgrid/Keyboard", "dojo/_base/declare", "dgrid/test/data/base", "dojo/domReady!"],
function(List, Grid, Selection, Keyboard, declare){
var columns = [
{label: 'Column 1', field: 'col1'},
Expand Down

0 comments on commit 5928b92

Please sign in to comment.