Dashboard weiter ausgebaut

This commit is contained in:
aschwarz
2023-03-23 14:30:30 +01:00
parent 8ab6cd63e9
commit ec8b611c93
54 changed files with 2132 additions and 831 deletions

View File

@ -0,0 +1,17 @@
function onClickSaveParameter() {
$.ajax({
type: 'POST',
url: '../controller/admin_parameter.php',
data: {
'function': 'saveParameter'
},
success: function(result) {
alert(result);
// document.getElementById("del").innerHTML = "<strong>entfernt</strong>";
//Text einblenden geht nicht, da ein Refresh gemacht wird. Dann sieht man den Text nicht
$(document).ajaxStop(function(){
window.location = "?";
});
}
});
}