FLEXIcontent / flexicontent-cck

Advanced content management for Joomla
http://www.flexicontent.org
82 stars 53 forks source link

Add Helper text option #1133

Closed iamrobert closed 11 months ago

iamrobert commented 11 months ago

Joomla uses inline helper text for fields:

FLEXIcontent doesn't have this option. This patch will help:

Its cleaner than using info boxes everywhere.

One caveat - Joomla output differs with accessibility included in the input - but I don't see this option yet.

<div class="control-group">
    <div class="control-label"><label id="jform_params_hint-lbl" for="jform_params_hint">Placeholder</label>
    </div>
    <div class="controls">
        <input type="text" name="jform[params][hint]" id="jform_params_hint" value="" class="form-control"
            aria-describedby="jform_params_hint-desc">
        <div id="jform_params_hint-desc" class="">
            <small class="form-text">
                Placeholder text which will appear inside the field as a hint to the user for the required input.
            </small>
        </div>
    </div>
</div>