Line | |
---|
1 | define([ |
---|
2 | "dojo/_base/declare", |
---|
3 | "./RoundRectList" |
---|
4 | ], function(declare, RoundRectList){ |
---|
5 | |
---|
6 | // module: |
---|
7 | // dojox/mobile/EdgeToEdgeCategory |
---|
8 | |
---|
9 | return declare("dojox.mobile.EdgeToEdgeList", RoundRectList, { |
---|
10 | // summary: |
---|
11 | // An edge-to-edge layout list. |
---|
12 | // description: |
---|
13 | // EdgeToEdgeList is an edge-to-edge layout list, which displays |
---|
14 | // all items in equally-sized rows. Each item must be a |
---|
15 | // dojox/mobile/ListItem. |
---|
16 | |
---|
17 | // filterBoxClass: String |
---|
18 | // The name of the CSS class added to the DOM node inside which is placed the |
---|
19 | // dojox/mobile/SearchBox created when mixing dojox/mobile/FilteredListMixin. |
---|
20 | // The default value is "mblFilteredEdgeToEdgeListSearchBox". |
---|
21 | filterBoxClass: "mblFilteredEdgeToEdgeListSearchBox", |
---|
22 | |
---|
23 | buildRendering: function(){ |
---|
24 | this.inherited(arguments); |
---|
25 | this.domNode.className = "mblEdgeToEdgeList"; |
---|
26 | } |
---|
27 | }); |
---|
28 | }); |
---|
Note: See
TracBrowser
for help on using the repository browser.