DataForm、DropBox 和数据注释(描述等)
我有一个 DataForm,其中我将一些 TextBox 字段替换为 DropBox,以模仿使用 AutoGenerateField 事件的查找。
但是,当我这样做时,我会丢失任何可以使用的数据注释(例如我在数据模型中指定的描述)。
有没有一种方法可以从数据模型中获取这些值,而无需求助于自动生成的字段? DataFormAutoGenerateFieldEventArgs
参数似乎不包含它们。
I've got a DataForm in which I replace some TextBox fields with DropBoxes to imitate a lookup using the AutoGeneratingField event.
However, when I do that, I loose any data annotations that could otherwise be used (such as a description which I specified in my data model).
Is there a way to get these values from the data model without resorting to auto-generated fields? The DataFormAutoGeneratingFieldEventArgs
parameter doesn't seem to contain them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 DataField.PropertyPath 属性设置为具有元数据的模型属性的名称。
Set the DataField.PropertyPath property to the name of the model property with metadata.