You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -328,7 +328,7 @@ The `<List>` component's child can be anything—even a custom component with it
328
328
## Selecting Columns
329
329
330
330
Let's get back to `<DataTable>`.
331
-
It reads the data fetched by `<List>`, then renders a table with one row for each record. `<DataTable>` uses its child components (here, a list of [Field component](./Fields.md)) to render the columns.
331
+
It reads the data fetched by `<List>`, then renders a table with one row for each record. `<DataTable>` uses its child components (a list of `<DataTable.Col>` components) to render the columns.
332
332
Each `<DataTable.Col>` component renders one field of the current record, specified by the `source` prop.
333
333
334
334
`<ListGuesser>` created one column for every field in the API response.
@@ -356,7 +356,7 @@ In react-admin, most configuration is done through components. Instead of using
356
356
357
357
## Using Field Types
358
358
359
-
So far, you've used simples [`<DataTable.Col>`](.//DataTable.md#datatablecol) and [`EmailField`](./EmailField.md) as [a `DataTable.Col``field`](./DataTable.md#field).
359
+
So far, you've used [`<DataTable.Col>`](./DataTable.md#datatablecol)directly and [`EmailField`](./EmailField.md) as [a `<DataTable.Col>` child](./DataTable.md#children-1).
360
360
React-admin provides [many more Field components](./Fields.md) to handle different data types—numbers, dates, images, arrays, and more.
361
361
362
362
For instance, instead of displaying the `website` field as plain text, you could make it a clickable link using [`<UrlField>`](./UrlField.md):
0 commit comments