Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想做这样的事情:我得到了表单和反馈面板,在一个特殊情况下,单击提交按钮后我希望首先在反馈面板中显示一条消息,然后我想要另一个操作(在我的情况下它正在搜索日志文件中的短语)被执行。因为现在当我单击提交按钮时,搜索开始,当它结束时,反馈面板中的消息已经显示。
您可以使用 AjaxLazyLoadPanel 来显示搜索结果。
onSubmit(ART art) { infO("Searching.."); searchResultContainer.addOrReplace(new MySearchResultLazyLoadPanel("result)); art.add(searchResultContainer); }