I included the dataIndx in colModel and now I don't get any rows displayed in the table.
var colM = [
/*{ title: "ID", width: 100},*/
{ title: "Datum", width: 100, dataIndx:"datum"},
{ title: "KW", width:100, dataIndx:"kw"},
{ title: "Monteure", width: 100, dataIndx:"name"},
{ title: "Planung", width: 200, dataIndx:"bezeichnung"},
{ title: "Notizen", width: 400, dataIndx:"notiz"}
];
The dataIndx("datum","kw","name","bezeichnung","notiz") are the column names from my database.
Now I get some other Error in my network tab:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where uebersichtsplan like CONCAT( ?, '%') OR uebersichtsplan like CONCAT( ?, '%' at line 5
"uebersichtsplan" is the name of one of my tables.