mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
MINOR Using FieldHolder() instead of Field() for CMSMain->BatchActionParameters() so field behaviour can fully apply
This commit is contained in:
parent
d4266b743b
commit
a8c6924cf0
@ -1126,7 +1126,7 @@ JS;
|
||||
if ($SNG_action->canView() && $fieldset = $SNG_action->getParameterFields()) {
|
||||
$formHtml = '';
|
||||
foreach($fieldset as $field) {
|
||||
$formHtml .= $field->Field();
|
||||
$formHtml .= $field->FieldHolder();
|
||||
}
|
||||
$forms[$urlSegment] = $formHtml;
|
||||
}
|
||||
|
@ -54,6 +54,11 @@
|
||||
}
|
||||
|
||||
.ReportAdmin .filters .field.datetime .field.date,
|
||||
.ReportAdmin .filters .field.datetime .field.time {
|
||||
.ReportAdmin .filters .field.datetime .field.time,
|
||||
.ReportAdmin .filters .field.datetime .field.dropdown {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.ReportAdmin .filters .field.datetime select {
|
||||
width: 14em;
|
||||
}
|
@ -422,6 +422,10 @@ body.stillLoading select {
|
||||
#TreeTools #batchactionsforms {
|
||||
padding: 0 5px 7px 5px;
|
||||
}
|
||||
|
||||
#TreeTools #batchactionsforms label {
|
||||
display: none;
|
||||
}
|
||||
#TreeTools select {
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user