From 968a5a2e79a853db7bd821d2d0fa1a23f65b435e Mon Sep 17 00:00:00 2001 From: abhinavgandham Date: Tue, 4 Mar 2025 10:36:24 +1000 Subject: [PATCH 1/2] DOC-3150: Context forms used to disappear if their input were disabled in the API. --- modules/ROOT/pages/7.7.1-release-notes.adoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/ROOT/pages/7.7.1-release-notes.adoc b/modules/ROOT/pages/7.7.1-release-notes.adoc index b584e37727..b08fbbd4a3 100644 --- a/modules/ROOT/pages/7.7.1-release-notes.adoc +++ b/modules/ROOT/pages/7.7.1-release-notes.adoc @@ -65,6 +65,14 @@ In {productname} {release-version}, an issue was identified where skin content C This issue has been resolved in {productname} {release-version}. The bundling process now correctly incorporates CSS styles into the generated JavaScript resources, preventing truncation and ensuring consistent styling across the editor UI. +=== Context forms used to disappear if their input were disabled in the `onSetup` API. +// #TINY-11890 + +Previousley, an issue was identified where disabling a context form's input in the `onSetup` function caused the form to disappear due to focus being set on a non-focusable element. + +In {productname} {release-version}, this issue has been resolved by ensuring that the fallback focus is directed to a focusable element. As a result, even when the input is disabled, the focus remains intact, preventing the context form from disappearing. + +For more information on the `onSetup` function and context forms, see xref:contextform.adoc[Context Forms] [[known-issues]] == Known issues From 8a4175183de3c37095a22479b07b55129ad15c7b Mon Sep 17 00:00:00 2001 From: "CODE:AG" <57781325+abhinavgandham@users.noreply.github.com> Date: Tue, 4 Mar 2025 12:55:07 +1000 Subject: [PATCH 2/2] Update modules/ROOT/pages/7.7.1-release-notes.adoc Co-authored-by: Karl Kemister-Sheppard --- modules/ROOT/pages/7.7.1-release-notes.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/7.7.1-release-notes.adoc b/modules/ROOT/pages/7.7.1-release-notes.adoc index b08fbbd4a3..4ab6b71d14 100644 --- a/modules/ROOT/pages/7.7.1-release-notes.adoc +++ b/modules/ROOT/pages/7.7.1-release-notes.adoc @@ -65,10 +65,10 @@ In {productname} {release-version}, an issue was identified where skin content C This issue has been resolved in {productname} {release-version}. The bundling process now correctly incorporates CSS styles into the generated JavaScript resources, preventing truncation and ensuring consistent styling across the editor UI. -=== Context forms used to disappear if their input were disabled in the `onSetup` API. +=== Context forms used to disappear if their input was disabled in the `onSetup` API. // #TINY-11890 -Previousley, an issue was identified where disabling a context form's input in the `onSetup` function caused the form to disappear due to focus being set on a non-focusable element. +Previously, an issue was identified where disabling a context form's input in the `onSetup` function caused the form to disappear due to focus being set on a non-focusable element. In {productname} {release-version}, this issue has been resolved by ensuring that the fallback focus is directed to a focusable element. As a result, even when the input is disabled, the focus remains intact, preventing the context form from disappearing.