I use NumericTextBoxFor to show amount in my application. 
I need to show 20 digits.
Can I accomplish it using NumericTextBoxFor?
I've been trying "max", but kendo just give 16 digits.
 @(Html.Kendo().NumericTextBoxFor(model => model.To)
            .Max(999999999999999999) //just 16 digits
                .Spinners(false)
            )
I tried to set 88888888888888888888 but it shows me 88888888888888885248.
 
     
    