如何使用枚举属性填充 Castle FormHelper RadioField
我正在尝试使用枚举作为模型中的属性,如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 MonoRail Select using Enum 我做了这样的事情:
然后在控制器上,您只需正常使用 ARDataBind 或 DataBind。
Using MonoRail Select Using Enum I did something like this:
And then on the controller, you would just use ARDataBind or DataBind normally.