Fix campi personalizzati
This commit is contained in:
parent
c1bf18cd8b
commit
a186a2ac5f
4
add.php
4
add.php
|
@ -62,10 +62,6 @@ $(document).ready(function(){
|
||||||
last = form.find(".box").last();
|
last = form.find(".box").last();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!last.length) {
|
|
||||||
last = form.find(".card").last();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!last.length) {
|
if (!last.length) {
|
||||||
last = form.find(".row").eq(-2);
|
last = form.find(".row").eq(-2);
|
||||||
}
|
}
|
||||||
|
|
|
@ -282,7 +282,7 @@ if (empty($record) || !$has_access) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!last.length) {
|
if (!last.length) {
|
||||||
last = form.find(".row").eq(-2);
|
last = form.find(".row").last();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Campi a inizio form
|
// Campi a inizio form
|
||||||
|
|
|
@ -99,7 +99,7 @@ class FieldManager implements ManagerInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
$result .= '
|
$result .= '
|
||||||
<div class="col-xs-4">
|
<div class="col-md-4">
|
||||||
'.$field['content'].'
|
'.$field['content'].'
|
||||||
</div>';
|
</div>';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue