diff --git a/docs/Forms.md b/docs/Forms.md
index 80bb9612fdd..2820544ae8d 100644
--- a/docs/Forms.md
+++ b/docs/Forms.md
@@ -770,3 +770,39 @@ Users often need to edit data from several resources in the same form. React-adm
Your browser does not support the video tag.
+
+## Edit In Place
+
+Instead of asking users to fill a form to edit a record, you can let them edit the record straight from the list or show view. [The `` component](./InPlaceEditor.md) uses a `` in read mode, and a `` in edition mode. It is useful for quick edits without navigating to a separate edit page.
+
+
+
+{% raw %}
+```tsx
+import { Show, InPlaceEditor } from 'react-admin';
+import { Stack, Box, Typography } from '@mui/material';
+
+const CustomerShow = () => (
+
+
+
+
+
+ Phone
+
+
+
+ Email
+
+
+ ...
+
+
+);
+```
+{% endraw %}
+
+Check out [the `` documentation](./InPlaceEditor.md) for more details.
diff --git a/docs/InPlaceEditor.md b/docs/InPlaceEditor.md
new file mode 100644
index 00000000000..64fe5a689f7
--- /dev/null
+++ b/docs/InPlaceEditor.md
@@ -0,0 +1,296 @@
+---
+layout: default
+title: "The InPlaceEditor Component"
+---
+
+# ``
+
+`` renders a field from the current record. On click, it switches to an editable state, allowing the user to change the value directly.
+
+
+
+Use this component to let users edit parts of a record directly in the list or detail view. It is useful for quick edits without navigating to a separate edit page.
+
+The field changes color on hover, to indicate that it is editable. The user can cancel the edit by pressing Escape. The field is saved automatically when the user clicks outside of it or presses Enter. While it is being saved, the field is disabled and a loading spinner is shown. If the save fails, an error message is displayed and the original value is restored.
+
+## Usage
+
+Use `` inside a `RecordContext` (e.g., under `` or ``) and pass it a `source` prop to specify which field to edit. The component will render the field with a `` and let the user edit it with a ``
+
+{% raw %}
+```tsx
+import { Show, InPlaceEditor } from 'react-admin';
+import { Stack, Box, Typography } from '@mui/material';
+import { AvatarField, CustomerActions } from './components';
+
+const CustomerShow = () => (
+
+
+
+
+
+ Phone
+
+
+
+ Email
+
+
+ ...
+
+
+);
+```
+{% endraw %}
+
+**Note**: `` creates a `
+```
+{% endraw %}
+
+## Props
+
+| Prop | Required | Type | Default | Description |
+| ------------ | -------- | --------- | ------- | -------------------------------------------------------------------- |
+| `cancelOnBlur` | Optional | `boolean` | `false` | Whether to cancel the edit when the field loses focus. |
+| `children` | Optional | `ReactNode` | | The component to render in read mode. |
+| `editor` | Optional | `ReactNode` | | The component to render in edit mode. |
+| `mutationMode` | Optional | `string` | `pessimistic` | The mutation mode to use when saving the record. |
+| `mutationOptions` | Optional | `object` | | The options to pass to the `useUpdate` hook. |
+| `notifyOnSuccess` | Optional | `boolean` | `false` | Whether to show a notification on successful save. |
+| `resource` | Optional | `string` | | The name of the resource. |
+| `showButtons` | Optional | `boolean` | `false` | Whether to show the save and cancel buttons. |
+| `source` | Optional | `string` | | The name of the field to edit. |
+| `sx` | Optional | `SxProps` | | The styles to apply to the component. |
+
+## `cancelOnBlur`
+
+By default, when the user clicks outside of the field in edit mode, it saves the current value. If `cancelOnBlur` is set to true, the edit will be canceled instead and the initial value will be restored.
+
+```tsx
+
+```
+
+## `children`
+
+The component to render in read mode. By default, it's a `` using the `source` prop.
+
+You can use any [field component](./Fields.md) instead, as it renders in a `RecordContext`.
+
+
+
+For example, to render a `` in read mode, you can use the following code:
+
+{% raw %}
+```tsx
+
+
+ }
+ sx={{
+ display: 'block',
+ marginBottom: '3px',
+ marginTop: '2px',
+ }}
+ />
+
+```
+{% endraw %}
+
+## `editor`
+
+The component to render in edit mode. By default, it's a `` using the `source` prop.
+
+You can use any [input component](./Input.md) instead, as it renders in a `
+```
+{% endraw %}
+
+## `mutationMode`
+
+The mutation mode to use when saving the record. By default, it is set to `pessimistic`, which means that the record is saved immediately when the user clicks outside of the field or presses Enter.
+
+You can use any of the following values:
+
+- `pessimistic`: On save, the field is dimmed to show the saving state. If the server returns an error, the UI is reverted to the previous state.
+- `optimistic`: The UI is updated immediately with the new value, without waiting for the server response. If the server returns an error, the UI is reverted to the previous state.
+- `undoable`: The record is saved immediately, but the user can undo the operation by clicking on the undo button in the notification. This must be used in conjunction with the `notifyOnSuccess` prop.
+
+```tsx
+
+```
+
+## `mutationOptions`
+
+If you need to pass options to the `useUpdate` hook, you can use this prop.
+
+This can be useful e.g. to pass [a custom `meta`](./Actions.md#meta-parameter) to the `dataProvider.update()` call.
+
+{% raw %}
+```tsx
+
+```
+{% endraw %}
+
+## `notifyOnSuccess`
+
+By default, the component does not show a notification when the record is saved. If you want to show a notification on successful save, set this prop to `true`.
+
+
+
+```tsx
+
+```
+
+## `resource`
+
+The name of the resource. By default, it is set to the current resource in the `ResourceContext`. You can use this prop to override the resource name.
+
+```tsx
+
+```
+
+## `showButtons`
+
+By default, the component does not show the save and cancel buttons. If you want to show them, set this prop to `true`.
+
+
+
+```tsx
+
+```
+
+## `source`
+
+The name of the field to edit. You must set this prop, unless you define the `children` and `editor` props.
+
+```tsx
+
+```
+
+## `sx`
+
+The styles to apply to the component. Use it to alter the default styles of the reading, editing, and saving modes.
+
+{% raw %}
+```tsx
+
+```
+{% endraw %}
+
+You can use the `sx` prop to apply styles to the read mode, edit mode and saving mode. The following classes are available:
+
+- `& .RaInPlaceEditor-reading`: The read mode.
+- `& .RaInPlaceEditor-editing`: The editing mode.
+- `& .RaInPlaceEditor-saving`: The saving mode.
\ No newline at end of file
diff --git a/docs/Reference.md b/docs/Reference.md
index 010c1c6c134..dc489b99fc4 100644
--- a/docs/Reference.md
+++ b/docs/Reference.md
@@ -106,6 +106,7 @@ title: "Index"
* [``](./ImageField.md)
* [``](./ImageInput.md)
* [``](./ImageInput.md#imageinput)
+* [``](./InPlaceEditor.md)
* [``](./Configurable.md#inspectorbutton)
**- L -**
diff --git a/docs/TextField.md b/docs/TextField.md
index 2aecc57e4fc..636eee45aa8 100644
--- a/docs/TextField.md
+++ b/docs/TextField.md
@@ -58,3 +58,43 @@ import { FunctionField } from 'react-admin';
render={record => `${record.first_name} ${record.last_name}`}
/>;
```
+
+## Edit In Place
+
+In addition to rendering a field value, you may want to allow users to edit that value. You can redirect the user to an `` page, or you can use the [``](./InPlaceEditor.md) component to edit the value directly in the list or show view.
+
+
+
+
+
+`` renders a `` by default, and turns into a `` when the user clicks on it. It is useful for quick edits without navigating to a separate edit page.
+
+{% raw %}
+```tsx
+import { Show, InPlaceEditor } from 'react-admin';
+import { Stack, Box, Typography } from '@mui/material';
+
+const CustomerShow = () => (
+
+
+
+
+
+ Phone
+
+
+
+ Email
+
+
+ ...
+
+
+);
+```
+{% endraw %}
+
+Check out [the `` documentation](./InPlaceEditor.md) for more details.
diff --git a/docs/TextInput.md b/docs/TextInput.md
index 30f0d041323..cacd9ec4f77 100644
--- a/docs/TextInput.md
+++ b/docs/TextInput.md
@@ -101,6 +101,42 @@ export const PostEdit = () => (
See [the `` documentation](./RichTextInput.md) for more details.
+## Edit In Place
+
+Instead of using a `` in a form, you can use an `` to edit the value directly in the list or the show view. This is useful for quick edits without having to open a form.
+
+
+
+{% raw %}
+```tsx
+import { Show, InPlaceEditor } from 'react-admin';
+import { Stack, Box, Typography } from '@mui/material';
+
+const CustomerShow = () => (
+
+
+
+
+
+ Phone
+
+
+
+ Email
+
+
+ ...
+
+
+);
+```
+{% endraw %}
+
+Check out [the `` documentation](./InPlaceEditor.md) for more details.
+
## Predictive Text Input
An alternative to `` is [``](./PredictiveTextInput.md), which suggests completion for the input value, using your favorite AI backend. Users can accept the completion by pressing the `Tab` key. It's like Intellisense or Copilot for your forms.
diff --git a/docs/img/InPlaceEditor.mp4 b/docs/img/InPlaceEditor.mp4
new file mode 100644
index 00000000000..f7544e70bdc
Binary files /dev/null and b/docs/img/InPlaceEditor.mp4 differ
diff --git a/docs/img/InPlaceEditorChildren.png b/docs/img/InPlaceEditorChildren.png
new file mode 100644
index 00000000000..419324f7e98
Binary files /dev/null and b/docs/img/InPlaceEditorChildren.png differ
diff --git a/docs/img/InPlaceEditorField.mp4 b/docs/img/InPlaceEditorField.mp4
new file mode 100644
index 00000000000..3b219bc4f8d
Binary files /dev/null and b/docs/img/InPlaceEditorField.mp4 differ
diff --git a/docs/img/InPlaceEditorNotifyOnSuccess.png b/docs/img/InPlaceEditorNotifyOnSuccess.png
new file mode 100644
index 00000000000..c847404c598
Binary files /dev/null and b/docs/img/InPlaceEditorNotifyOnSuccess.png differ
diff --git a/docs/img/InPlaceEditorShowButtons.png b/docs/img/InPlaceEditorShowButtons.png
new file mode 100644
index 00000000000..799959d529c
Binary files /dev/null and b/docs/img/InPlaceEditorShowButtons.png differ
diff --git a/docs/navigation.html b/docs/navigation.html
index 4975da3623e..8099a396af1 100644
--- a/docs/navigation.html
+++ b/docs/navigation.html
@@ -210,6 +210,7 @@