Wicket FormComponentPanel 中的模型
我创建了一个 FormComponentPanel 来表示当前时间,其中包含 3 个小时、分钟和子午线的下拉菜单。 FormComponentPanel 的模型对象是一个 Date 对象,每个下拉列表的模型代表所选的选项,但我需要根据从下拉列表中选择的选项更改组件中的模型对象。我怎样才能做到这一点?
注意:在开发阶段我无法使用任何其他组件...我只需要能够从模型对象获取准确的数据。
I've created a FormComponentPanel to represent the current time which consists of 3 drop downs for hour and minute and meridiem.
The model object of the FormComponentPanel is a Date object and the model of each drop down represents the selected option, but I need to change the model object in my component according to the options chosen from the drop downs. How can I do that?
Note: I cannot use any other component at this point of the development... I just need to able to get accurate data from the model object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议改用 java.util.Calendar 甚至更好: JodaTime
I would propose to use java.util.Calendar instead or even better: JodaTime
我认为 java.util.Date 可以通过 2 个 ComponentPropertyModel 对象使用,访问 getter/setter 作为属性“小时”、“分钟”。
我对“meridiem”属性没有简单的想法,这需要编码。
或者使用24小时。
I think java.util.Date can be used via 2 ComponentPropertyModel objects, accessing getters/setters as properties "hours", "minutes".
I have no simple idea for "meridiem" property, this need to be coded.
Or use 24h.