0

我有一个具有内联编辑功能的 KendoGrid。nullable decimal问题是,在渲染时,网格在DefaultValue属性中绑定数据类型时会引发错误。

我使用此代码绑定DefaultValue.

decimal? val = 0M; //nullable decimal 
model.Field(columnSetting.Member, memberType).DefaultValue(val);

这是错误:

从 'System.Decimal' 到 'System.Nullable`1[[System.Decimal, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] 的无效转换。

我的模型中有一个nullable decimal数据类型,因此网格应该期望相同的数据类型。但是,它仍然会引发此错误。这是一个 KendoGrid 错误吗?还是我错过了什么?

任何帮助,将不胜感激。谢谢!

4

0 回答 0