From 634ef7207d7707b99ceb31a7b8eb0ce223766238 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Mon, 18 Mar 2024 13:55:28 +0100 Subject: [PATCH] kotlin_ui_dsl_version_2.md: note Cell.graphProperty API removal --- topics/user_interface_components/kotlin_ui_dsl_version_2.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 82c89ee78..4d6baa9ae 100644 --- a/topics/user_interface_components/kotlin_ui_dsl_version_2.md +++ b/topics/user_interface_components/kotlin_ui_dsl_version_2.md @@ -1,6 +1,6 @@ -# Kotlin UI DSL Version 2 + - +# Kotlin UI DSL Version 2 Kotlin DSL for creating UI forms with input components bound to state object. @@ -417,6 +417,8 @@ It is possible to bind component values to properties with the following methods ### Cell.graphProperty +> Removed in 2023.3, please use `validationRequestor(property::afterPropagation)` instead. + 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.