Project

General

Profile

Actions

Bug #70209

closed

Epic #69955: Optimize new Extbase/ Fluid based rewrite of EXT:form

EXT:form - Allow setting classes via layout for elements in compatibilityMode

Added by Björn Jacob over 8 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Could have
Assignee:
-
Category:
Form Framework
Target version:
Start date:
2015-09-30
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

With the former version of EXT:form it was possible to set classes using layout. We should reintroduce this functionality in compatibilityMode.

Here's some setup (derived form #70068).


textline (
    <div class="form-group">
        <div class="col-sm-3 control-label">
            <label />
        </div>
        <div class="col-sm-9">
            <input class="form-control" />
            <error />
        </div>
    </div>
)
submit (
    <div class="form-group">
        <div class="col-sm-offset-3 col-sm-9">
            <input class="btn btn-primary" />
        </div>
    </div>
)

Right now you will neither see the classes "form-control" for the TEXTLINE element nor the classes "btn btn-primary" for the SUBMIT element.

Actions #1

Updated by Björn Jacob over 8 years ago

  • Sprint Focus set to On Location Sprint
Actions #2

Updated by Gerrit Code Review over 8 years ago

  • Status changed from New to Under Review

Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/43742

Actions #3

Updated by Gerrit Code Review over 8 years ago

Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/43742

Actions #4

Updated by Gerrit Code Review over 8 years ago

Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/43742

Actions #5

Updated by Björn Jacob over 8 years ago

Here's an example form for testing this issue:


enctype = multipart/form-data
method = post
confirmation = 1
prefix = standardForm
class = standardForm

postProcessor {
    1 = mail
    1 {
        senderEmailField = email
        senderNameField = surname
        subjectField = subject
        recipientEmail = mail@example.com
        priority = 1
        organization = TRITUM
    }
}

form {
    layout {
        textline (
            <div class="form-group">
                <div class="col-sm-3 control-label">
                    <label />
                </div>
                <div class="col-sm-9">
                    <input class="form-control" />
                    <error />
                </div>
            </div>
        )

        submit (
            <div class="form-group">
                <div class="col-sm-offset-3 col-sm-9">
                    <input class="btn btn-primary" />
                </div>
            </div>
        )
    }
}

confirmation {
    layout {
        textline (
            <div class="form-group">
                <div class="col-sm-3 control-label">
                    <label />
                </div>
                <div class="col-sm-9">
                    <inputvalue />
                </div>
            </div>
        )
    }
}

10 = TEXTLINE
10 {
    name = surname
    label = Surname
}

20 = TEXTLINE
20 {
    name = email
    label = Email
}

30 = TEXTLINE
30 {
    name = subject
    label = Subject
}

100 = SUBMIT
100 {
    name = submit
    value = Submit
}

Actions #6

Updated by Ralf Zimmermann over 8 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #7

Updated by Anja Leichsenring about 8 years ago

  • Sprint Focus deleted (On Location Sprint)
Actions #8

Updated by Riccardo De Contardi over 6 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF