You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please modify the text box to a selection box and separate the data from the text. Otherwise, the displayed behavior type will not be translatable.
And, This is a logical error. If it is an immutable text box (using the translated text), why does it submit and update the original record, and why do some errors appear when outputting next time? The update processing page should not record this value, it should not be modified.
AndroidOL
changed the title
Bug: behavio cannot be translated in the Edit Behavior page
Bug: Behavior cannot be translated in the Edit Behavior page
Feb 27, 2025
Describe the Bug
behaviour_manage_edit.php line 148
Please modify the text box to a selection box and separate the data from the text. Otherwise, the displayed behavior type will not be translatable.
And, This is a logical error. If it is an immutable text box (using the translated text), why does it submit and update the original record, and why do some errors appear when outputting next time? The update processing page should not record this value, it should not be modified.
To Reproduce
behaviour_manage_edit.php line 148
//Type
$row = $form->addRow();
$row->addLabel('type', __('Type'));
$row->addTextField('type')->setValue($values['type'])->required()->readonly();
Expected behavior
$row->addSelect('type')->setValue($values['type'], __($values['type']))->required()->readonly();
Actual behavior
The displayed behavior type will not be translatable.
Screenshots
No response
Gibbon version
28.0.01
Browser
Chrome
Browser Version
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: