blob: 16ca81e929b38662e95799b13deba977711db020 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//>>built
define("dojox/mobile/EdgeToEdgeList", [
"dojo/_base/declare",
"./RoundRectList"
], function(declare, RoundRectList){
/*=====
var RoundRectList = dojox.mobile.RoundRectList;
=====*/
// module:
// dojox/mobile/EdgeToEdgeCategory
// summary:
// An edge-to-edge layout list.
return declare("dojox.mobile.EdgeToEdgeList", RoundRectList, {
// summary:
// An edge-to-edge layout list.
// description:
// EdgeToEdgeList is an edge-to-edge layout list, which displays
// all items in equally sized rows. Each item must be
// dojox.mobile.ListItem.
buildRendering: function(){
this.inherited(arguments);
this.domNode.className = "mblEdgeToEdgeList";
}
});
});
|