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

Table Manager: Feldauswahl - HTML-Struktur von außen zugänglicher machen. #1471

Open
alxndr-w opened this issue Jan 9, 2024 · 1 comment

Comments

@alxndr-w
Copy link
Contributor

alxndr-w commented Jan 9, 2024

Bedarf aus: alexplusde/yform_field#67

In Slack merke ich, dass manchmal unklarer wird, welche Felder von YForm selbst kommen und welche aus meinem YForm Field Addon. Das würde ich gerne über CSS meinerseits anpassen, jedoch am liebsten ohne über den Output Filter gehen zu müssen.

Ich würde dazu hier gerne den Ausgabecode etwas anpassen, z.B. hier (Validate):

foreach ($types['validate'] as $k => $v) {
if (isset($v['famous']) && $v['famous']) {
$tmp_famous .= '<tr class="yform-classes-famous"><th data-title="Validate"><a class="btn btn-default btn-block" href="' . $link . 'type_id=validate&type_name=' . $k . '"><code>' . $k . '</code></a></th><td class="vertical-middle">' . $v['description'] . '</td></tr>';
} else {
$tmp .= '<tr><th data-title="Validate"><a class="btn btn-default btn-block" href="' . $link . 'type_id=validate&type_name=' . $k . '"><code>' . $k . '</code></a></th><td class="vertical-middle">' . $v['description'] . '</td></tr>';
}
}
$tmp = '<table class="table table-hover yform-table-help">' . $tmp_famous . $tmp . '</table>';

Dadurch könnte ich eigene Felder so kenntlich machen (z.B. Value):

image

@DanielWeitenauer
Copy link
Contributor

DanielWeitenauer commented Jan 10, 2024

Könnte es nicht genügen, die Beschreibung entsprechend zu erweitern? Z.B. in eckigen Klammern dahinter (oder davor) Datum & Uhrzeit Eingabe [yform_field]. Mit einem einheitlichen Prefix im Feldnamen könnten die Felder auch gruppiert werden.

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

No branches or pull requests

2 participants