1
Help for ParamQuery Grid (free version) / Re: Newbie with different Questions about Localization and Editing in a popup
« on: June 07, 2019, 05:15:53 pm »
After a while I have solved the problem with saving in db and I would like to share to other to stay not for the same problem:
=> main file
I hope this is helpful
=> main file
Code: [Select]
var row = $grid.pqGrid('getRowData', { rowIndx: getRowIndx() })
artikel = row.ArtikelNr;
aufgabeAlt = row.Aufgabe;
if (typeof a2 !== 'undefined'){
aufgabeNeu = a2;
} else {
aufgabeNeu = row.Aufgabe;
}
if (typeof a3 !== 'undefined'){
prioritaet = a3;
} else {
prioritaet = row.Prio;
}
$.ajax({
url: 'Vormerkungen_Grid_Speichern.php',
data: {'ArtikelNr': artikel, 'AufgabeAlt': aufgabeAlt, 'AufgabeNeu': aufgabeNeu, 'Prio': prioritaet},
dataType: 'JSON',
type: 'GET',
contentType: false,
success: function(output) {
$grid.pqGrid.trigger("reloadGrid");
}
});
Code: [Select]
<?php
// Datei dient nur zum Speichen von Veränderungen im Grid
require ('./system_connector_mysql.php');
if(isset($_GET['ArtikelNr'])){
$artikelnr = $_GET['ArtikelNr'];
$aufgabe = $_GET['AufgabeNeu'];
$prio = $_GET['Prio'];
$query = "UPDATE tab_vormerkungen SET Aufgabe = '$aufgabe', Prio=$prio WHERE ArtikelNr=$artikelnr";
mysql_query($query) OR ('Vormerkungen_Speichern.php - Zeile 13 |' . mysql_error());
}
else {
echo 'no data here';
}
?>
I hope this is helpful