source: Dev/trunk/src/client/dojox/mobile/RoundRectDataList.js

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

Added Dojo 1.9.3 release.

File size: 622 bytes
Line 
1define([
2        "dojo/_base/kernel",
3        "dojo/_base/declare",
4        "./RoundRectList",
5        "./_DataListMixin"
6], function(kernel, declare, RoundRectList, DataListMixin){
7
8        // module:
9        //              dojox/mobile/RoundRectDataList
10
11        kernel.deprecated("dojox/mobile/RoundRectDataList",
12                "Use dojox/mobile/RoundRectStoreList instead", "2.0");
13               
14        return declare("dojox.mobile.RoundRectDataList", [RoundRectList, DataListMixin], {
15                // summary:
16                //              A dojo/data-enabled version of RoundRectList.
17                // description:
18                //              RoundRectDataList is a subclass RoundRectList which
19                //              can generate ListItems according to the given dojo/data store.
20        });
21});
Note: See TracBrowser for help on using the repository browser.