基于 DropdownChoice 选择动态添加面板
我是 wicket 的新手,正在尝试一些东西,例如,我有四个面板,但只应根据 DropdownChoice 组件中所做的选择添加一个。 我尝试使用 onSelectChange() 方法添加面板,但它不起作用。任何人都可以帮我提供正确的示例代码吗?
am a newbie to wicket and am experimenting few things with it, like, I have four panel but one only should be added based on the selection made in the DropdownChoice component.
i tried to add panels using onSelectChange() method, but it doesn't work. can any one please help me out with proper sample code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我给你举一个例子来说明这个问题。希望有帮助。
就这样,您必须使用 AjaxFormComponentUpdatingBehavior 来处理 onchange 事件。如果不需要下拉菜单,您可以使用选项卡面板。您可以在这里找到示例代码:wicket 选项卡式面板
I give you an example for this problem. Hope it helps.
So that's all, you have to use AjaxFormComponentUpdatingBehavior to handle onchange event. If the dropdown menu not a requirement, you can use tabbedpanel. Here you can find the sample code: wicket tabbed panel