Erreur : `this.ActivityList.getAll is not a function`
Cause : La méthode `getAll()` n'existe pas dans la classe `ActivityList`
Solution : Remplacement par une boucle `for` avec `getCount()` et `getByIndex()`
// AVANT (incorrect) this.ActivityList.getAll().forEach(activity => { // ... }); // APRĂS (correct) for (let i = 0; i < this.ActivityList.getCount(); i++) { const activity = this.ActivityList.getByIndex(i); // ... }
đ Ouvrir frmProjectList.html