sample skeleton application with dojo toolkit & arcgis js api v 4.30
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
987 B

dojo.provide("dojox.grid.tests.performance.module");
doh.register("dojox.grid.tests.performance.module", []);
try{
var numRows = [100];
var layouts = ["Single", "Dual"];
var selectors = [false, true];
dojo.forEach(numRows, function(r){
dojo.forEach(layouts, function(l){
dojo.forEach(selectors, function(s){
// 5-minute timeout on each of these - since they can take quite a while...
doh.registerUrl("Grid Creation - " + r + " Rows, " + l + " Layout" + (s ? "w/ selector" : ""),
dojo.moduleUrl("dojox.grid.tests.performance", "creation.html") +
"?rows=" + r + "&layout=" + l.toLowerCase() + "&rowSelector=" + s,
300000);
doh.registerUrl("Grid dojo.data Notification - " + r + " Rows, " + l + " Layout" + (s ? "w/ selector" : ""),
dojo.moduleUrl("dojox.grid.tests.performance", "dataNotification.html") +
"?rows=" + r + "&layout=" + l.toLowerCase() + "&rowSelector=" + s,
300000);
});
});
});
}catch(e){
doh.debug(e);
}