gpt4 book ai didi

sencha-touch-2 - Ext.NestedList 的详细信息卡中的列表

转载 作者:行者123 更新时间:2023-12-02 05:06:32 25 4
gpt4 key购买 nike

我的应用程序从数据库接收数据。

“食谱”包含 Ext.NestedList

http://www.senchafiddle.com/#VovtL#o7GJJ

我需要在详细卡片中显示一个列表:

http://www.senchafiddle.com/#4hKD8#uZlr7

list中的值应该取自base并且依赖于nestedlist中的key值。我看了 Kitchen Sink Example,但我几乎看不懂。是否可以实现?或者更好地用一组按钮替换嵌套列表?我很乐意知道任何想法。

最佳答案

onLeafItemTap: function(nestedList, list, index, node, record, e) {
var detailCard = nestedList.getDetailCard();
detailCard.removeAll(true, false);
detailCard.setHtml('');
detailCard.setLayout('fit');
var urList = Ext.create('Ext.List', {
fullscreen: true,
itemTpl: '{title}',
data: [
{ title: 'Item 1' },
{ title: 'Item 2' },
{ title: 'Item 3' },
{ title: 'Item 4' }
]
});
detailCard.add(urList);
}

代码非常 self 解释。您只需将 urList 替换为您的列表即可。并改变商店..如果有任何问题让我知道

关于sencha-touch-2 - Ext.NestedList 的详细信息卡中的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10864957/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com