sistemato ordinamento date e migration per anagrafica

This commit is contained in:
2023-06-10 13:25:15 +02:00
parent a9136cb13f
commit 91608dcb7d
6 changed files with 99 additions and 256 deletions

View File

@@ -1,6 +1,13 @@
$(document).ready(function() {
$('#tab_progetti').DataTable({
responsive: true
fields: [
{
label:"Data",
type: "datetime"
}
]
});
});
@@ -19,4 +26,4 @@ $.getJSON("progetti/coordinatori", {}, function(data) {
)
}
);
});
});

View File

@@ -1,6 +1,12 @@
$(document).ready(function() {
$('#tab_progetti').DataTable({
responsive: true
fields: [
{
label:"Data",
type: "datetime"
}
]
});
$('#form').click(function() {
@@ -35,4 +41,4 @@ $(document).ready(function() {
$('#myModal_addRow').modal('show');
// $('#form_new').attr('action', 'progetti/new');
});
});
});