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.
18 lines (15 loc) • 496 B
JavaScript
define([
"dojo/_base/declare",
"./EdgeToEdgeList",
"./_StoreListMixin"
], function(declare, EdgeToEdgeList, StoreListMixin){
// module:
// dojox/mobile/EdgeToEdgeStoreList
return declare("dojox.mobile.EdgeToEdgeStoreList", [EdgeToEdgeList, StoreListMixin],{
// summary:
// A dojo/store-enabled version of EdgeToEdgeList.
// description:
// EdgeToEdgeStoreList is a subclass of EdgeToEdgeList which
// can generate ListItems according to the given dojo/store store.
});
});