0

I have Requirement like this.i should show format like 9999.000 in kendoNumericTextBox with in the grid how to do it ..

note :After decimal point It should accept Only 3 zeros(3 decimal Points)

2 Answers2

0

you can specify format in column specification :

{ field: "fieldName",type:"number", format: "{0:n3}" }
Vijay
  • 2,965
  • 1
  • 15
  • 24
0

I solved my problem like this:

.kendoNumericTextBox({
    placeholder: "select value",
    format: "#.000"
});
smottt
  • 3,272
  • 11
  • 37
  • 44