Wicket ChoiceFilteredPropertyColumn 示例?

发布于 2024-09-04 06:08:11 字数 190 浏览 5 评论 0原文

我真的很想要某种可以在我的 AjaxFallbackDefaultDataTable 上使用的过滤器。看来我可以使用 ChoiceFilteredPropertyColumn 来实现它,但是我似乎找不到任何有关如何使用它的示例,或者只是它的功能演示。

有人可以指点我,或者告诉我如何实现 ChoiceFilteredPropertyColumn 吗?

I'd really like some kind of filter I can use on my AjaxFallbackDefaultDataTable. It seems that I may be able to implement that with a ChoiceFilteredPropertyColumn, however I cannot seem to find any examples on how to use it, or just demos of what it does.

Can someone point me to, or show me how to implement a ChoiceFilteredPropertyColumn?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

盛装女皇 2024-09-11 06:08:12

你想实现什么目标。使用 ChoicefilteredPropertyColumn 实际上很简单:

columns.add( new ChoiceFilteredPropertyColumn<Publication, Boolean>( new ResourceModel( "active.f" ),
                            "active", "active", Model.ofList( Arrays.asList(    Boolean.TRUE,
                                                                                Boolean.FALSE ) ) )

What do you want to achieve. Using ChoicefilteredPropertyColumn is actuall as easy as :

columns.add( new ChoiceFilteredPropertyColumn<Publication, Boolean>( new ResourceModel( "active.f" ),
                            "active", "active", Model.ofList( Arrays.asList(    Boolean.TRUE,
                                                                                Boolean.FALSE ) ) )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文