0

是否可以在 Senchas Nestedlist 中使用部分?目前我正在剖析一个原生 iOS 应用程序,我想知道标准 UITableView 行为是否可以使用 Sencha/Html5/JS 重现。

例子
(来源:icodeblog.com

上面的示例屏幕截图显示了 3 个部分:D、I、O

谢谢

4

1 回答 1

1

这是可能的。您需要将这两个列表属性设置为 true:

 grouped:true,
 indexBar: true,

此外,您的列表商店必须有getGroupString才能知道如何对列表项进行分组。

 getGroupString : function(record) {
      return record.get('firstName')[0];
 },

这是现场示例:http: //jsfiddle.net/sSyqF/16/

于 2011-10-18T10:49:45.520 回答