如何使用枚举属性填充 Castle FormHelper RadioField

发布于 2024-11-29 07:00:30 字数 542 浏览 3 评论 0原文

我正在尝试使用枚举作为模型中的属性,如 Castle Monorail 页面<中所述/a> 但是我在填充 aa 单选按钮 具有该属性。

在我看来,我正在使用此 nvelocity 语法:(

$formHelper.RadioField("myModel.MyEnumProperty", 1, "%{}")

1 是枚举的整数值,也是我的模型具有的值)

应该如何完成?另外还有一个涉及投标的答案(这也可能是一个问题)

I am trying to work with enums as properies in my models, as decribed in this Castle Monorail page But I am having some problems when populating a a radio button with that property.

I am using this nvelocity syntax in my view:

$formHelper.RadioField("myModel.MyEnumProperty", 1, "%{}")

(being 1 the integer value for the enum, and also the value that my model have)

How it should be done? Plus for an answer that also deals with the biding (which will probably be an issue as well)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

℉絮湮 2024-12-06 07:00:30

使用 MonoRail Select using Enum 我做了这样的事情:

#foreach($item in EnumToPairs(typeof(MyEnum)))
    $Form.RadioField("myModel.MyEnumProperty", $item.First)
    $Form.LabelFor("myModel.MyEnumProperty", $item.Second)
#end

然后在控制器上,您只需正常使用 ARDataBind 或 DataBind。

Using MonoRail Select Using Enum I did something like this:

#foreach($item in EnumToPairs(typeof(MyEnum)))
    $Form.RadioField("myModel.MyEnumProperty", $item.First)
    $Form.LabelFor("myModel.MyEnumProperty", $item.Second)
#end

And then on the controller, you would just use ARDataBind or DataBind normally.

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