iPad 和 Google Chrome 上的 extjs 6.5.* (1, 2) 组合框错误
extjs 6.5.* (1, 2) combobox bug on iPad and Google Chrome
在 iPad (ios 10.3.3) 上测试我的 webapp 时,我想到了一些看起来像框架错误的东西。
所有 queryMode
设置为 local
的 combobox
都不会在 combobox
的 button
单击时打开下拉弹出窗口。
(测试于 Chrome v. 63.0.3238.73)
我会添加一个 fiddle,但您可以在以下位置进行测试:
extjs 6.5.2 modern combobox, example usage
和
extjs 6.5.1 kitchensink modern, checkout form (Shipping Address -> State)
还有其他人遇到过该错误还是设备问题?
任何已知的解决方法?
我想出了一个解决方法,我发布它是为了帮助遇到同样问题的人。
在 floatedPicker
配置中添加一个 minHeight 解决了这个错误。
floatedPicker: {
minHeight: 100
}
在 iPad (ios 10.3.3) 上测试我的 webapp 时,我想到了一些看起来像框架错误的东西。
所有 queryMode
设置为 local
的 combobox
都不会在 combobox
的 button
单击时打开下拉弹出窗口。
(测试于 Chrome v. 63.0.3238.73)
我会添加一个 fiddle,但您可以在以下位置进行测试:
extjs 6.5.2 modern combobox, example usage
和
extjs 6.5.1 kitchensink modern, checkout form (Shipping Address -> State)
还有其他人遇到过该错误还是设备问题?
任何已知的解决方法?
我想出了一个解决方法,我发布它是为了帮助遇到同样问题的人。
在 floatedPicker
配置中添加一个 minHeight 解决了这个错误。
floatedPicker: {
minHeight: 100
}