Sencha Touch - 带有类似 iOS UITableView 部分的嵌套列表?

发布于 2024-12-10 12:30:55 字数 449 浏览 0 评论 0原文

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

示例
(来源:icodeblog.com)

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

谢谢

Is it possible to use sections in Senchas Nestedlist? Currently i am dissecting a native iOS app and i wonder if the standard UITableView behavior is reproducable using Sencha/Html5/JS.

Example
(source: icodeblog.com)

The example screenshot above shows 3 sections: D, I, O

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情栀口红 2024-12-17 12:30:55

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

 grouped:true,
 indexBar: true,

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

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

这是实例: http://jsfiddle.net/sSyqF/16/

It's possible. You need to set to true this two list properties:

 grouped:true,
 indexBar: true,

Also your list's store must have getGroupString in order to know how to group the list items.

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

Here is live example: http://jsfiddle.net/sSyqF/16/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文