JCombo AutoComplete - 模式或反向查找
我正在使用 自动完成swingx 库中的装饰器:
AutoCompleteDecorator.decorate( myComboBox );
这非常贴心。但是,它仅从键入文本的开头向前搜索。
因此,如果我的组合包含:[Apple、Banana、Grape、Orange],则在“严格”模式下输入“an”将不会显示任何结果。在非严格模式下也不会搜索任何内容。我希望它能与“Banana”和“Banana”相匹配。 “橙色”,因为这两个项目都包含我输入的文本。
是否有任何自动完成库允许此类功能?我认为策略方法在这里最有效,但我没有发现任何适用的方法。我很乐意扩展现有的功能——只要我不重新发明轮子。
提前致谢!
I'm using the auto-complete decorator in the swingx library:
AutoCompleteDecorator.decorate( myComboBox );
Which is pretty sweet. However, it only searches forward from the start of the typed text.
So if my combo contains: [Apple, Banana, Grape, Orange] typing 'an' in "strict" mode will not show any results. In non-strict mode nothing is searched either. I'd like it to match 'Banana' & 'Orange' since both items contain my typed text.
Are there any auto-complete libraries that allow for this type of functionality? I would think a strategy approach would work best here, but I'm not finding anything applicable. I'm fine with extending existing functionality - so long as I'm not reinventing the wheel.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JComboBox
和JTextField
的自动完成功能,根据您的要求,您可以设置严格的 false/true 自动完成 ComboBox / JFextField 如果您想使用代码,那么这是JFormattedTextField
自动完成功能的良好基础AutoComplete for
JComboBox
andJTextField
and by your requirements here you can sets strict false/true Auto complete ComboBox / JFextField and if you'll want to play with code then that's good base for AutoComplete funcionalities forJFormattedTextField