Line | |
---|
1 | define([ |
---|
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.