Project

General

Profile

Actions

Bug #81714

closed

No valid HTML output Form->DatePicker

Added by Björn Paulsen almost 7 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Form Framework
Target version:
Start date:
2017-06-27
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
form,datepicker
Complexity:
no-brainer
Is Regression:
Sprint Focus:

Description

Hello Together,

the SysExt Form in Typo 3 8.7.2 renders wrong html for DatePicker.

This is wrong:

<input class="small form-control" id="kontakt-datepicker-1" type="input" name="tx_form_formframework[kontakt][datepicker-1][date]" placeholder="d.m.Y" readonly="1" />

This is right

<input class="small form-control" id="kontakt-datepicker-1" type="text" name="tx_form_formframework[kontakt][datepicker-1][date]" placeholder="d.m.Y" readonly="readonly" />

It is wrong in Class typo3/sysext/form/Classes/ViewHelpers/Form/DatePickerViewHelper.php:
Line 90:

Wrong:

$this->tag->addAttribute('type', 'input');

Right:

$this->tag->addAttribute('type', 'text');

Line 104:

Wrong:

$this->tag->addAttribute('readonly', true);

Right:

$this->tag->addAttribute('readonly', 'readonly');

Thank you for change.

Actions

Also available in: Atom PDF