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.
28 lines
865 B
28 lines
865 B
define([ |
|
"dojo/_base/declare", |
|
"./RoundRectList" |
|
], function(declare, RoundRectList){ |
|
|
|
// module: |
|
// dojox/mobile/EdgeToEdgeCategory |
|
|
|
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 a |
|
// dojox/mobile/ListItem. |
|
|
|
// filterBoxClass: String |
|
// The name of the CSS class added to the DOM node inside which is placed the |
|
// dojox/mobile/SearchBox created when mixing dojox/mobile/FilteredListMixin. |
|
// The default value is "mblFilteredEdgeToEdgeListSearchBox". |
|
filterBoxClass: "mblFilteredEdgeToEdgeListSearchBox", |
|
|
|
buildRendering: function(){ |
|
this.inherited(arguments); |
|
this.domNode.className = "mblEdgeToEdgeList"; |
|
} |
|
}); |
|
});
|
|
|