The NumberBox is a widget that displays a numeric value and allows a user to modify it by typing in a value, and incrementing or decrementing it using the keyboard or mouse.
using System.Web.Mvc;
namespace DevExtreme.MVC.Demos.Controllers {
public class NumberBoxController : Controller {
public ActionResult Overview() {
return View();
}
}
}