UNPKG

dojox

Version:

Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.

27 lines (24 loc) 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); }