Subversion Repositories eFlore/Applications.coel

Rev

Rev 609 | Rev 641 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 609 Rev 613
Line 535... Line 535...
535
		contenuPanneauCentre.rafraichir(personne);
535
		contenuPanneauCentre.rafraichir(personne);
536
	}
536
	}
Line 537... Line 537...
537
 
537
 
Line -... Line 538...
-
 
538
	public void afficherListePersonnes(PersonneListe personnesACharger)	{
538
	public void afficherListePersonnes(PersonneListe personnesACharger)	{
539
		
Line 539... Line 540...
539
		
540
		//FIXME : le test ci-dessous bloque l'éxécution lors de deux clics consécutifs
540
		if (!(contenuPanneauCentre instanceof PersonneVue))	{
541
		//if (!(contenuPanneauCentre instanceof PersonneVue))	{
541
			
542
			
542
			PersonneVue personneVue = new PersonneVue(this);
543
			PersonneVue personneVue = new PersonneVue(this);
Line 543... Line 544...
543
			contenuPanneauCentre = personneVue;
544
			contenuPanneauCentre = personneVue;
544
			panneauCentre.add(personneVue);
545
			panneauCentre.add(personneVue);
545
		}	
546
		//}	
Line 575... Line 576...
575
		int nbElements = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbElementsPage")); 
576
		int nbElements = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbElementsPage")); 
576
		selectionnerPersonne(vue, personne, projetId, 0, nbElements);
577
		selectionnerPersonne(vue, personne, projetId, 0, nbElements);
577
	}
578
	}
Line 578... Line 579...
578
	
579
	
579
	public void selectionnerPersonne(Rafraichissable vue, Personne personne, String projetId, int start, int nbElements)	{
-
 
580
		
580
	public void selectionnerPersonne(Rafraichissable vue, Personne personne, String projetId, int start, int nbElements)	{
581
		String personneId = null;
581
		String personneId = null;
582
		if (personne!=null)	{
582
		if (personne!=null)	{
583
			personneId = personne.getId();
583
			personneId = personne.getId();
584
		}
-
 
585
		
584
		}
586
		modele.selectionnerPersonne(vue, personneId, projetId, null, start, nbElements);
585
		modele.selectionnerPersonne(vue, personneId, projetId, null, start, nbElements);
Line 587... Line 586...
587
	}
586
	}
588
	
587