Fix: revised php code to maestro search

This commit is contained in:
2018-07-12 10:55:44 +09:00
parent 7aa212ee47
commit f23665a5f0
12 changed files with 339 additions and 227 deletions
+3 -3
View File
@@ -69,9 +69,9 @@ class PlayerList {
$(this.listRows[i].playerID).empty();
if(i < jsonData.length) {
$(this.listRows[i].playerID).append(jsonData[i]["PlayerID"]);
$(this.listRows[i].playerName).val(jsonData[i]["Name"]);
$(this.listRows[i].enterCode).val(jsonData[i]["EnterCode"]);
$(this.listRows[i].playerID).append(jsonData[i]["playerID"]);
$(this.listRows[i].playerName).val(jsonData[i]["playerName"]);
$(this.listRows[i].enterCode).val(jsonData[i]["enterCode"]);
this.enableItem(this.listRows[i]);
} else {