Project

Contents

Issue #00005361

More options to "label" <input> fields
Feature/Improvement

Until now you had the option to use labeled="true|false" on <tml:input> tags. If labeled="true" a <label> tag is generated for the field option:

<input id="some_id"><label for="some_id">option value</label>

A lot of web designer prefer a different way to do this:

<label>
    <input ...>
</label>

This can now be reached via a new attribute value "wrap" for the labeled attribut:

<tml:input ... labeled="wrap"/>