* @returns {Neo.component.Base}
()
| 102 | * @returns {Neo.component.Base} |
| 103 | */ |
| 104 | createExampleComponent() { |
| 105 | let list = Neo.create({ |
| 106 | module : CircleList, |
| 107 | animate: true, |
| 108 | height : 1000, |
| 109 | store : MainStore, |
| 110 | width : 1000 |
| 111 | }); |
| 112 | |
| 113 | list.store.on('sort', this.onStoreSort, this); |
| 114 | |
| 115 | return list |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * @param {Number} index |