我尝试为 Decimal 和 Integer 类型创建一个简单的自定义编辑器模板:
@ModelType Decimal?
@Html.NumericBoxFor(Function(m) m)
和
@ModelType Integer?
@Html.NumericBoxFor(Function(m) m)
将它们保存为 ~/Views/Shared/EditorTemplates/Decimal.vbhtml 和 ~/Views/Shared/EditorTemplates/Integer.vbhtml(也尝试过 Int32.vbhtml)。
但是我的自定义 HtmlHelper 函数永远不会被调用。在网上搜索并尝试了很多东西后无法弄清楚..这里有什么问题?