From 8f55578552654c8f66219dc182ca69c9699cc614 Mon Sep 17 00:00:00 2001 From: Andreas Rozek Date: Thu, 25 Jul 2024 00:21:52 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a70b84..0810238 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,7 @@ These two blocks enable or disable specific UI elements. > appends a radio button group element (based on an [HTML input elements of type "radio"](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio)) with the given name and label to the UI. If an element with the same name already exists, it is removed before the new one is appended. > -> Radiobutton groups are a bit special as they contain a whole group of radio buttons, each with its own label. As a consequence, after appending a new radio button group element, you will have to define a list of radio buttons using the "append Choice" block - and the value of the whole group (i.e., the associated context item) is the index of the currently checked radio button (or `-1` if no button is checked) +> Radiobutton groups are a bit special as they contain a whole group of radio buttons, each with its own label. As a consequence, after appending a new radio button group element, you will have to define a list of radio buttons using the "append Choice" block - and the value of the whole group (i.e., the associated context item) is the (0-based) index of the currently checked radio button (or `-1` if no button is checked) ![appendDropDown](./Screenshots/appendDropDown.png)