在Kendo数字文本框中将零添加到原始值
我在Kendo数字文本框中输入值0.0000000000001
。
但它改为0.00000000000010000000
。
@(Html.Kendo().NumericTextBoxFor(m => m.Amount)
.Name("Amount")
.Decimals(15)
.Format("n")
.HtmlAttributes(new { @maxlength = "15" })
)