source: Dev/trunk/src/client/dojox/mobile/GridLayout.js @ 529

Last change on this file since 529 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 701 bytes
Line 
1define([
2        "dojo/_base/declare",
3        "./IconMenu"
4], function(declare, IconMenu){
5        // module:
6        //              dojox/mobile/GridLayout
7
8        return declare("dojox.mobile.GridLayout", IconMenu, {
9                // summary:
10                //              A container widget that places its children in a grid layout.
11
12                // cols: Number
13                //              The number of child items in a row.
14                cols: 0,
15
16                /* internal properties */
17               
18                // childItemClass: String
19                //              The name of the CSS class of grid items.
20                childItemClass: "mblGridItem",
21               
22                // baseClass: String
23                //              The name of the CSS class of this widget.
24                baseClass: "mblGridLayout",
25               
26                // _tags: [private] String
27                _tags: "div",
28               
29                // _createTerminator: [private] Boolean
30                _createTerminator: true
31        });
32});
Note: See TracBrowser for help on using the repository browser.