From b2145fd8e60729ae2250bbe6f26bc8d9a497bd7a Mon Sep 17 00:00:00 2001 From: Andreas Rozek Date: Wed, 24 Jul 2024 23:53:06 -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 b2b7690..d52403a 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ These two blocks enable or disable specific UI elements. ![appendRadiobuttonGroup](./Screenshots/appendRadiobuttonGroup.png) -> appends a radio button group element 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 +> 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) ![appendDropDown](./Screenshots/appendDropDown.png)