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.
32 lines
701 B
32 lines
701 B
define([ |
|
"dojo/_base/declare", |
|
"./IconMenu" |
|
], function(declare, IconMenu){ |
|
// module: |
|
// dojox/mobile/GridLayout |
|
|
|
return declare("dojox.mobile.GridLayout", IconMenu, { |
|
// summary: |
|
// A container widget that places its children in a grid layout. |
|
|
|
// cols: Number |
|
// The number of child items in a row. |
|
cols: 0, |
|
|
|
/* internal properties */ |
|
|
|
// childItemClass: String |
|
// The name of the CSS class of grid items. |
|
childItemClass: "mblGridItem", |
|
|
|
// baseClass: String |
|
// The name of the CSS class of this widget. |
|
baseClass: "mblGridLayout", |
|
|
|
// _tags: [private] String |
|
_tags: "div", |
|
|
|
// _createTerminator: [private] Boolean |
|
_createTerminator: true |
|
}); |
|
});
|
|
|