Skip to content

Commit 60ec3d2

Browse files
Grids: Update "numeric" Data Type Mentions to "number" (#8622)
1 parent d81016d commit 60ec3d2

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

api-reference/10 UI Components/dxCardView/9 Types/ColumnProperties/setFieldValue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ This function allows you to process user input before it is saved to the data so
112112
return (
113113
<{WidgetName} ... >
114114
<Column dataField="Price" />
115-
<Column dataField="Count" dataType="numeric" setFieldValue={setFieldValue}/>
115+
<Column dataField="Count" dataType="number" setFieldValue={setFieldValue}/>
116116
<Column dataField="TotalPrice" />
117117
</{WidgetName}>
118118
);

api-reference/_hidden/GridBaseColumn/dataType.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ default: undefined
88
Casts column values to a specific data type.
99

1010
---
11-
If a data field provides values of one data type, but the UI component should cast them to another, specify the proper type in this property. In the following code, values of the `ID` and `hireDate` fields are cast to numeric and date data types, respectively.
11+
If data fields contain values of one type but the UI component requires another, set the correct type in this property. The following code snippet casts the `ID` and `hireDate` column values to *"number"* and *"date"* types, respectively:
1212

1313
---
1414
#####jQuery

api-reference/_hidden/GridBaseColumn/filterOperations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following table lists available filter operations by [data type](/api-refere
2222
<td>[ "contains", "notcontains", "startswith", "endswith", "=", "<>" ]</td>
2323
</tr>
2424
<tr>
25-
<td>"numeric"</td>
25+
<td>"number"</td>
2626
<td>[ "=", "<>", "<", ">", "<=", ">=", "between" ]</td>
2727
</tr>
2828
<tr>

api-reference/_hidden/GridBaseColumn/setCellValue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ This function allows you to process user input before it is saved to the data so
144144
return (
145145
<{WidgetName} ... >
146146
<Column dataField="Price" />
147-
<Column dataField="Count" dataType="numeric" setCellValue={this.setCellValue}/>
147+
<Column dataField="Count" dataType="number" setCellValue={this.setCellValue}/>
148148
<Column dataField="TotalPrice" />
149149
</{WidgetName}>
150150
);

0 commit comments

Comments
 (0)