Actions
Bug #71157
closedEXT:form - Problems with checkboxes and multiple is set
Status:
Closed
Priority:
Should have
Assignee:
Category:
Form Framework
Target version:
Start date:
2015-10-30
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Assume we're having the following form. Steps to reproduce the problem:
- select one element of checkboxgroup
- submit form
- expected: selected checkbox is submitted
- is: all checkboxes are selected
prefix = tx_form confirmation = 1 postProcessor { 1 = mail 1 { recipientEmail = your@mail.com senderEmail = your@mail.com } } 10 = CHECKBOXGROUP 10 { class = fieldset-subgroup legend { value = Select me } name = checkboxgroup 10 = CHECKBOX 10 { type = checkbox label { value = Option 1 } } 20 = CHECKBOX 20 { type = checkbox label { value = Option 2 } } 30 = CHECKBOX 30 { type = checkbox label { value = Option 3 } } } 20 = TEXTLINE 20 { type = text name = surname label { value = Surname } } 30 = SUBMIT 30 { type = submit name = 6 value = Submit form } rules { 1 = required 1 { breakOnError = 0 showMessage = 1 message = Required error = This field is required element = surname } }
Actions