I want the Numeric text box to show the integer values(and not any decimal part) for which we set the below options and it seems to show the values properly in integers in both IE and chrome browsers.. but both the up and down buttons are not working only in Internet explorer whereas it works perfectly in chrome... How can this be fixed..??
$("#size").kendoNumericTextBox({
value: 32.3,
min: 0,
max: 480,
step: 5,
decimals: 0,
format: '0.'
});
The above sample code is available in this fiddle link(http://jsfiddle.net/Mgb77/)