Hi everyone,
I'm trying to implement a dialog with a couple of radioButtons in one radioButtonGroup. After pressing "Ok" the selected RadioButton-Name should be displayed in the formular.
I can't figure out a way to get the name of the radioButton and pass it to the form.
Here is what i got so far:
commit: function(dialog) {
// i need the radio button name here
},
description:{
name: "Auswahl Schnittstellen",
elements:[
{type: "cluster", name: "ABS", elements:[
{type: "view", align_children: "align_left", elements: [
{type: "radio", name: "name1", group_id: "rado"},
{type: "radio", name: "name2", group_id: "rado"},
{type: "radio", name: "name3", group_id: "rado"},
{type: "radio", name: "name4", group_id: "rado"},
]}
]}
]}...