JCombo AutoComplete - 模式或反向查找

发布于 2024-11-07 05:55:29 字数 502 浏览 0 评论 0原文

我正在使用 自动完成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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狼性发作 2024-11-14 05:55:29

JComboBoxJTextField 的自动完成功能,根据您的要求,您可以设置严格的 false/true 自动完成 ComboBox / JFextField 如果您想使用代码,那么这是 JFormattedTextField 自动完成功能的良好基础

AutoComplete for JComboBox and JTextField 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 for JFormattedTextField

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文