Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Default" funktioniert nicht #260

Open
ReneLuecking opened this issue Sep 26, 2018 · 3 comments
Open

"Default" funktioniert nicht #260

ReneLuecking opened this issue Sep 26, 2018 · 3 comments
Assignees
Milestone

Comments

@ReneLuecking
Copy link

Auch wenn man einem Feld einen Default-Wert zuweist, wird dieser nicht ausgegeben. Beispiel:

'columnFields' => array(
    'textField' => array(
        'inputType' => 'text',
        'default' => 'abcd',
    ),
),

Grundsätzlich wird der Default-Wert zwar in der MultiColumnWizard.php genutzt, aber nur, wenn $varValue an der Stelle ein leerer String ist. Tatsächlich ist $varValue hier aber null. Somit wäre meiner Meinung nach eine empty()-Prüfung besser geeignet:

$arrField['value'] = empty($varValue) ? $arrField['default'] : $varValue;
@zonky2
Copy link
Collaborator

zonky2 commented Sep 26, 2018

klingt gut - kannst Du einen PR machen...

@stefanheimes
Copy link
Member

stefanheimes commented Nov 29, 2018

Brauchen wir noch Contao 3 Support oder reicht Contao 4?

@zonky2
Copy link
Collaborator

zonky2 commented Nov 30, 2018

m.M.: wenn es nur ein "Einzeiler" ist, gern für C3 - ansonsten Blick nach vorne und auf C4 konzentrieren

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants