Completed
Last Updated: 16 Feb 2015 11:43 by ADMIN
carl
Created on: 13 Feb 2015 17:36
Category: UI for ASP.NET MVC
Type: Feature Request
1
Please get rid of the spinners on numeric textboxes as a default
I find the spinners on numeric text boxes useful about 2% of the time.  Please make the default for them not to show.  I think it is ridicules to have to go through this:
var numeric = $("#APVol").kendoNumericTextBox().data("kendoNumericTextBox");

        numeric.wrapper
               .find(".k-numeric-wrap")
               .addClass("expand-padding")
               .find(".k-select").hide();
just to make them nonfunctional but I still have the additional space being taken up for the spinner area. 
1 comment
ADMIN
Telerik Admin
Posted on: 16 Feb 2015 11:43
There's a spinners option (http://docs.telerik.com/kendo-ui/api/javascript/ui/numerictextbox#configuration-spinners) from the API of the NumericTextBox which allows you to specify whether the spinners should be rendered or not. Hence you can control their visibility via this setting.