gpt4 book ai didi

javascript - extjs 6 现代组合框,具有无限滚动功能

转载 作者:行者123 更新时间:2023-12-03 02:45:52 25 4
gpt4 key购买 nike

基于this来自 sencha 论坛上的 mitchellsimoens 的评论 我尝试在 extjs 6.5.2 现代中实现无限滚动组合框。

问题是,将combobox存储设置为虚拟存储会产生以下错误:Uncaught TypeError: a.setExtraKeys is not a function .

我还将 floatedPicker 设置为:

{
xtype: 'boundlist',
infinite: true,
// BoundListNavigationModel binds to input field
// Must only be enabled when list is visible
navigationModel: {
disabled: true
},
scrollToTopOnRefresh: false,
loadingHeight: 70,
maxHeight: 300,
floated: true,
axisLock: true,
hideAnimation: null
}

有没有办法在 extjs 6 现代中实现无限滚动组合框而不将默认选择器更改为网格?

最佳答案

好吧,这确实有效:

floatedPicker: {
xtype: 'boundlist',
infinite: true,
// BoundListNavigationModel binds to input field
// Must only be enabled when list is visible
navigationModel: {
disabled: true
},
plugins: {
listpaging: {
autoPaging: true,
loadMoreText: 'More records..',
noMoreRecordsText: 'No more records.'
}
},
scrollToTopOnRefresh: false,
loadingHeight: 70,
maxHeight: 300,
floated: true,
axisLock: true,
hideAnimation: null,
variableHeights: true
}

加载时有点难看,但它可以工作。

我还使用了Ext.data.store。虚拟商店不适用于组合框。

关于javascript - extjs 6 现代组合框,具有无限滚动功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48096410/

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