Wicket - GoAndClear 按钮事件需要 FilterForm ajax 事件
我已将带有 GoAndClear 按钮的 FilterForm 添加到 AjaxFallbackDefaultDataTable 中。除了刷新我的桌子之外,过滤工作正常。我有一个下拉列表,可以更改行数以显示 target.addComponent(my AjaxFallbackDefaultDataTable) 的作用,它不会重新加载数据,但会刷新。如果我在单击“执行”或“清除”按钮后使用此功能,则表格会显示正确的行、项目计数和页面链接。
如何处理 FilterForm 上的 Go 和 Clear 单击以更新我的 AjaxFallbackDefaultDataTable?
I've added a FilterForm with GoAndClear buttons to an AjaxFallbackDefaultDataTable. The filtering is working fine except for refreshing my table. I have a dropdown that changes the number of rows to show which does a target.addComponent(my AjaxFallbackDefaultDataTable) which doesn't reload the data but refreshes the. If I use this after I click a Go or Clear button then the table shows the proper rows, item count, and page links.
How can I handle Go and Clear clicks on my FilterForm to update my AjaxFallbackDefaultDataTable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在过滤器表单的 onsubmit 方法中,只需调用表的 .renderComponent() 即可。
In the onsubmit method for the filter form just call .renderComponent() for the table.