Wicket FormComponentPanel 中的模型

发布于 2024-12-18 10:02:59 字数 207 浏览 0 评论 0原文

我创建了一个 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 技术交流群。

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

发布评论

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

评论(2

ま昔日黯然 2024-12-25 10:02:59

我建议改用 java.util.Calendar 甚至更好: JodaTime

I would propose to use java.util.Calendar instead or even better: JodaTime

极致的悲 2024-12-25 10:02:59

我认为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文