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)
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)
you can specify format in column specification :
{ field: "fieldName",type:"number", format: "{0:n3}" }
I solved my problem like this:
.kendoNumericTextBox({
placeholder: "select value",
format: "#.000"
});