diff --git a/topics/user_interface_components/kotlin_ui_dsl_version_2.md b/topics/user_interface_components/kotlin_ui_dsl_version_2.md index c09f8e550..372383938 100644 --- a/topics/user_interface_components/kotlin_ui_dsl_version_2.md +++ b/topics/user_interface_components/kotlin_ui_dsl_version_2.md @@ -415,15 +415,15 @@ It can be created by `Row.placeholder()` method and populated by content later v It is possible to bind component values to properties with the following methods. -### `Cell.graphProperty` - -> Removed in 2023.3, use `validationRequestor(property::afterPropagation)` instead. +### `Cell.validationRequestor` Binds `component` value changing to property. The property is updated when the value is changed and is not related to `DialogPanel.apply()`. The method is rarely used directly. There are many extensions for specific components described in [](#cellbind). +> In versions before 2023.3, use `Cell.graphProperty`. + ### `Cell.bind` **UI DSL Showcase Tab**: Binding (Sources: [`DemoBinding`](%gh-ic%/platform/platform-impl/internal/src/com/intellij/internal/ui/uiDslShowcase/DemoBinding.kt))