【发布时间】:2018-01-04 22:49:12
【问题描述】:
基于 mitchellsimoens 在 sencha 论坛上的this 评论,我尝试在 extjs 6.5.2 现代 中实现无限滚动组合框。
问题在于将combobox 存储设置为virtual store 会产生此错误: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 modern 中实现无限滚动组合框,而无需将默认选择器更改为网格?
【问题讨论】:
标签: javascript extjs combobox infinite-scroll extjs6-modern