DevExtreme v23.2 is now available.

Explore our newest features/capabilities and share your thoughts with us.

Your search did not match any results.

Overview

The NumberBox is a component that displays a number. Users can change this number (for example, type a new value or use the spin buttons, keyboard arrows, or mouse wheel to increment/decrement it).

Use the value property to specify the number displayed in the NumberBox. If you do not specify the value property, the NumberBox displays 0 (the default value). You can use the min and max properties to set the value range.

Specify the onValueChanged function to handle the value change. In this demo, the value of the "Stock" NumberBox depends on the "This month sales" NumberBox. Change the value in the "This month sales" NumberBox to see how it affects the other value.

If users should not interact with a NumberBox, set its disabled or readOnly property to true. The main difference between these properties is that users can submit a read-only NumberBox in an HTML form, while they cannot submit a disabled NumberBox.

Backend API
$(() => { $('#simple').dxNumberBox({ inputAttr: { 'aria-label': 'Simple' }, }); $('#buttons').dxNumberBox({ value: 20.5, showSpinButtons: true, showClearButton: true, inputAttr: { 'aria-label': 'With Spin And Buttons' }, }); $('#disabled').dxNumberBox({ value: 20.5, showSpinButtons: true, showClearButton: true, disabled: true, inputAttr: { 'aria-label': 'Disabled' }, }); $('#minAndMax').dxNumberBox({ value: 15, min: 10, max: 20, showSpinButtons: true, inputAttr: { 'aria-label': 'Min And Max' }, }); const totalProductQuantity = 30; $('#sales').dxNumberBox({ max: totalProductQuantity, min: 0, value: 16, showSpinButtons: true, inputAttr: { 'aria-label': 'Sales' }, onKeyDown(e) { const { event } = e; const str = event.key; if (/^[.,e]$/.test(str)) { event.preventDefault(); } }, onValueChanged(data) { productInventory.option('value', totalProductQuantity - data.value); }, }); const productInventory = $('#stock').dxNumberBox({ value: 14, min: 0, showSpinButtons: false, readOnly: true, inputAttr: { 'aria-label': 'Stock' }, }).dxNumberBox('instance'); });
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>DevExtreme Demo</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script> <link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/23.2.5/css/dx.light.css" /> <script src="js/dx.all.js"></script> <script src="index.js"></script> <link rel="stylesheet" type="text/css" href="styles.css" /> </head> <body class="dx-viewport"> <div class="demo-container"> <div class="form"> <div class="dx-fieldset"> <div class="dx-field"> <div class="dx-field-label">Default mode</div> <div class="dx-field-value"> <div id="simple"></div> </div> </div> <div class="dx-field"> <div class="dx-field-label">With spin and clear buttons</div> <div class="dx-field-value"> <div id="buttons"></div> </div> </div> <div class="dx-field"> <div class="dx-field-label">Disabled</div> <div class="dx-field-value"> <div id="disabled"></div> </div> </div> <div class="dx-field"> <div class="dx-field-label">With max and min values</div> <div class="dx-field-value"> <div id="minAndMax"></div> </div> </div> </div> <div class="dx-fieldset"> <div class="dx-fieldset-header">Event Handling</div> <div class="dx-field"> <div class="dx-field-label">This month sales</div> <div class="dx-field-value"> <div id="sales"></div> </div> </div> <div class="dx-field"> <div class="dx-field-label">Stock</div> <div class="dx-field-value"> <div id="stock"></div> </div> </div> </div> </div> </div> </body> </html>