Hi there,
I'm using a NumericTextBox to edit a number with variable (unknown) number of decimals but I don't know how to show all the decimals because by default the NumericTextbox is rounding the number to two decimals.
To partially solve the solution I did the following
1.html.Kendo().NumericTextBox()2. .Name("asdf")3. .Format("#.#############")4. .Decimals(10)But in this way I'm limiting the number of decimals to 10.
Is there a way to show all the decimals in the NumericTextBox?
Thank you,
Jack.
