mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
- Avoid duplicate ID warning by only returning the value from the matching radio button
- Fix radiobuttons where the options/values were set in the template instead of sel_options
This commit is contained in:
parent
715580aca4
commit
15ddeb2a24
@ -79,6 +79,11 @@ class etemplate_widget_checkbox extends etemplate_widget
|
||||
{
|
||||
$valid = $value;
|
||||
}
|
||||
elseif ( !$options && $selected_value && $value == $selected_value)
|
||||
{
|
||||
// Options set in template, not in sel_options
|
||||
$valid = $selected_value;
|
||||
}
|
||||
elseif (!isset($valid))
|
||||
{
|
||||
$valid = ''; // do not overwrite value of an other radio-button of the same group (identical name)!
|
||||
|
@ -133,7 +133,7 @@ var et2_radiobox = et2_inputWidget.extend(
|
||||
}
|
||||
}, this, et2_radiobox);
|
||||
|
||||
return val;
|
||||
return val == this.options.set_value ? this.options.set_value : null;
|
||||
}
|
||||
});
|
||||
et2_register_widget(et2_radiobox, ["radio"]);
|
||||
|
Loading…
Reference in New Issue
Block a user