anche se avrai già controllato è l'ultima colonna del file fcmClassificaDati.js come evidenziato dalla struttura classifica // Oggetto Classifica (abbreviato C) function C (ID,IDGirone,IDCompetizione,Pos,Nome,Presidente,Punti,PCV,PCN,PCP,PFV,PFN,PFP,RCF,RCS,RFF,RFS,MI,PMed,PMin,PMax,PDevSt,PAvv,PTot,TMed,TMin,TMax,TDevSt,TAvv,TTot,bm) { this.ID = ID this.IDGirone = IDGirone this.IDCompetizione = IDCompetizione this.Pos = Pos this.Nome = Nome this.Presidente = Presidente this.Punti = Punti this.PartiteVinte = new Coppia(PCV,PFV) this.PartiteNulle = new Coppia(PCN,PFN) this.PartitePerse = new Coppia(PCP,PFP) this.RetiFatte = new Coppia(RCF,RFF) this.RetiSubite = new Coppia(RCS,RFS) this.MI = MI this.PMed = PMed this.PMin = PMin this.PMax = PMax this.PDevSt = PDevSt this.PAvv = PAvv this.PTot = PTot this.TMed = TMed this.TMin = TMin this.TMax = TMax this.TDevSt = TDevSt this.TAvv = TAvv this.TTot = TTot this.bm = bm }
|