MVC数据类型货币触发数字小键盘

时间:2016-03-02 00:55:32

标签: asp.net-mvc html5 razor

我的模型有一个Dataype(Datatype.Currency),它是一个十进制对象。

我试图强制视图在用户点击它时触发ipad / iphone上的数字小键盘。当对象是INT但不适用于Decimal时,它可以工作。

下载模型的片段(我尝试使用正则表达式无效):

 [Display(Name = "Bid Price")]
        [DataType(DataType.Currency)]
        //[RegularExpression("([1-9][0-9]*)")]
        public decimal BidPrice { get; set; }

以下是该视图的片段。有没有办法以某种方式使用新的{@inputtype =“number”}?

<div class="col-md-10">
                @Html.EditorFor(model => model.BidPrice, new { @type= "number" })
                @Html.ValidationMessageFor(model => model.BidPrice)
            </div>

如果你有这个工作,请帮忙。

1 个答案:

答案 0 :(得分:3)

除非您使用MVC-5.1或更高版本,否则EditorFor()方法不支持添加htmlAttributes。如果您的语法是

@Html.EditorFor(m => m.BidPrice, new { htmlAttributes = new { @type= "number" } })

如果不是,则需要使用TextBoxFor()方法添加属性

@Html.TextBoxFor(m => m.BidPrice, new { @type= "number" })