mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-03 03:19:17 +01:00
Fix select come campi personalizzati
This commit is contained in:
parent
259a9b45eb
commit
246fb0aa92
13
add.php
13
add.php
@ -37,7 +37,16 @@ echo '
|
|||||||
<script>
|
<script>
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
var form = $("#custom_fields_top-add").parent().find("form").first();
|
var form = $("#custom_fields_top-add").parent().find("form").first();
|
||||||
|
|
||||||
|
// Rimozione select inizializzati
|
||||||
|
$("#custom_fields_bottom-add").find("select").each(function () {
|
||||||
|
$(this).select2().select2("destroy");
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#custom_fields_bottom-add").find("select").each(function () {
|
||||||
|
$(this).select2().select2("destroy");
|
||||||
|
});
|
||||||
|
|
||||||
// Campi a inizio form
|
// Campi a inizio form
|
||||||
form.prepend($("#custom_fields_top-add").html());
|
form.prepend($("#custom_fields_top-add").html());
|
||||||
|
|
||||||
@ -53,6 +62,8 @@ $(document).ready(function(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
last.after($("#custom_fields_bottom-add").html());
|
last.after($("#custom_fields_bottom-add").html());
|
||||||
|
|
||||||
|
start_superselect();
|
||||||
});
|
});
|
||||||
</script>';
|
</script>';
|
||||||
|
|
||||||
|
11
editor.php
11
editor.php
@ -203,6 +203,15 @@ if (empty($record) || !$has_access) {
|
|||||||
<script>
|
<script>
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
var form = $("#module-edit").find("form").first();
|
var form = $("#module-edit").find("form").first();
|
||||||
|
|
||||||
|
// Rimozione select inizializzati
|
||||||
|
$("#custom_fields_bottom-edit").find("select").each(function () {
|
||||||
|
$(this).select2().select2("destroy");
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#custom_fields_bottom-edit").find("select").each(function () {
|
||||||
|
$(this).select2().select2("destroy");
|
||||||
|
});
|
||||||
|
|
||||||
// Campi a inizio form
|
// Campi a inizio form
|
||||||
form.prepend($("#custom_fields_top-edit").html());
|
form.prepend($("#custom_fields_top-edit").html());
|
||||||
@ -219,6 +228,8 @@ if (empty($record) || !$has_access) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
last.after($("#custom_fields_bottom-edit").html());
|
last.after($("#custom_fields_bottom-edit").html());
|
||||||
|
|
||||||
|
start_superselect();
|
||||||
});
|
});
|
||||||
</script>';
|
</script>';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user