-
Data Grid
- Overview
-
Data Binding
-
Paging and Scrolling
-
Editing
-
Grouping
-
Filtering and Sorting
- Focused Row
-
Row Drag & Drop
-
Selection
-
Columns
- State Persistence
-
Appearance
-
Templates
-
Data Summaries
-
Master-Detail
-
Export to PDF
-
Export to Excel
-
Adaptability
- Keyboard Navigation
-
Pivot Grid
- Overview
-
Data Binding
-
Field Chooser
-
Features
-
Export to Excel
-
Tree List
- Overview
-
Data Binding
- Sorting
- Paging
-
Editing
- Node Drag & Drop
- Focused Row
-
Selection
-
Filtering
-
Column Customization
- State Persistence
- Adaptability
- Keyboard Navigation
-
Card View
-
Scheduler
- Overview
-
Data Binding
-
Views
-
Features
- Virtual Scrolling
-
Grouping
-
Customization
- Adaptability
-
Html Editor
-
Chat
-
Diagram
- Overview
-
Data Binding
-
Featured Shapes
-
Custom Shapes
-
Document Capabilities
-
User Interaction
- UI Customization
- Adaptability
-
Charts
- Overview
-
Data Binding
-
Area Charts
-
Bar Charts
- Bullet Charts
-
Doughnut Charts
-
Financial Charts
-
Line Charts
-
Pie Charts
-
Point Charts
-
Polar and Radar Charts
-
Range Charts
-
Sparkline Charts
-
Tree Map
-
Funnel and Pyramid Charts
- Sankey Chart
-
Combinations
-
More Features
-
Export
-
Selection
-
Tooltips
-
Zooming
-
-
Gantt
- Overview
-
Data
-
UI Customization
- Strip Lines
- Export to PDF
- Sorting
-
Filtering
-
Reporting
- AI-powered Extensions
-
Interaction
-
Report Types
-
Data binding
-
Real-life Reports
-
Layout Features
-
Report Controls
-
Web-specific Features
-
Rich Text Editor
- Overview
- Load/Save
- Document Protection
-
Templates
- Autocorrect
-
Customization
- Simple View
-
Spreadsheet
- Overview
-
Open a Document
- Export And Printing
-
Features
-
UI Customization
-
Gauges
- Overview
-
Data Binding
-
Bar Gauge
-
Circular Gauge
-
Linear Gauge
-
Navigation
- Overview
- Accordion
-
Menu
- Multi View
-
Drawer
-
Tab Panel
-
Tabs
-
Toolbar
- Stepper
- Pagination
-
Tree View
- Right-to-Left Support
-
Layout
-
Tile View
- Splitter
-
Gallery
- Scroll View
- Resizable
-
-
Editors
- Overview
- Autocomplete
-
Calendar
- Check Box
- Color Box
- Date Box
-
Date Range Box
-
Drop Down Box
-
Number Box
-
Select Box
- Switch
-
Tag Box
- Text Area
- Text Box
- Validation
- Custom Text Editor Buttons
- Right-to-Left Support
- Editor Appearance Variants
-
Forms and Multi-Purpose
- Overview
- Button Group
- Field Set
-
Filter Builder
-
Form
- Radio Group
-
Range Selector
- Numeric Scale (Lightweight)
- Numeric Scale
- Date-Time Scale (Lightweight)
- Date-Time Scale
- Logarithmic Scale
- Discrete scale
- Custom Formatting
- Use Range Selection for Calculation
- Use Range Selection for Filtering
- Image on Background
- Chart on Background
- Customized Chart on Background
- Chart on Background with Series Template
- Range Slider
- Slider
-
Sortable
-
File Management
-
File Manager
- Overview
-
File System Types
-
Customization
-
File Uploader
-
-
Actions and Lists
-
Maps
- Overview
-
Map
-
Vector Map
-
Dialogs and Notifications
-
Localization
Number Box - Formatting
Use the format property to specify the integer, currency, accounting, percent, and other formats of the NumberBox value.
This demo may be temporarily unavailable due to an issue with the UNPKG service we use for resource loading. You can vote on it in the
UNPKG repositoryWe're working on a fix — sorry for the inconvenience.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
<div class="dx-fieldset">
<div class="dx-field">
<div class="dx-field-label">Integer format</div>
<div class="dx-field-value">
@(Html.DevExtreme().NumberBox()
.Format("#")
.InputAttr("aria-label", "Integer Format")
.Value(14500)
)
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Currency format</div>
<div class="dx-field-value">
@(Html.DevExtreme().NumberBox()
.Format("$ #,##0.##")
.InputAttr("aria-label", "Currency Format")
.Value(14500.55)
)
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Accounting format</div>
<div class="dx-field-value">
@(Html.DevExtreme().NumberBox()
.Format("$ #,##0.##;($ #,##0.##)")
.InputAttr("aria-label", "Accounting Format")
.Value(-2314.12)
)
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Percent format</div>
<div class="dx-field-value">
@(Html.DevExtreme().NumberBox()
.Format("#0%")
.Value(0.15)
.InputAttr("aria-label", "Percent Format")
.Step(0.01)
)
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Fixed point format</div>
<div class="dx-field-value">
@(Html.DevExtreme().NumberBox()
.Format("#,##0.00")
.InputAttr("aria-label", "Fixed Point Format")
.Value(13415.24)
)
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Weight format</div>
<div class="dx-field-value">
@(Html.DevExtreme().NumberBox()
.Format("#0.## kg")
.InputAttr("aria-label", "Weight Format")
.Value(3.14)
)
</div>
</div>
</div>
xxxxxxxxxx
using Microsoft.AspNetCore.Mvc;
namespace DevExtreme.NETCore.Demos.Controllers {
public class NumberBoxController : Controller {
public ActionResult Formatting() {
return View();
}
}
}
xxxxxxxxxx
.dx-field {
margin-bottom: 20px;
}
The format property can accept the following value types:
-
Predefined format
See the type property description for a list of accepted values. -
Custom format string
Use a LDML pattern to specify a custom format. Refer to the following article for more information: Custom Format String. -
Function
A function should apply a custom format to a value and return the formatted value as a string. Functions are useful for advanced formatting. -
Object
Full format configuration. The object structure is shown in the format API section.