Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1513 Rev 1710
Line 45... Line 45...
45
		
45
		
46
		String nom = (nomProjet == null) ? "%" : nomProjet+"%";
46
		String nom = (nomProjet == null) ? "%" : nomProjet+"%";
Line 47... Line 47...
47
		String[] param = {projetId, nom};
47
		String[] param = {projetId, nom};
48
		
48
		
-
 
49
		HashMap<String, String> restrictions = new HashMap<String, String>();
-
 
50
 
-
 
51
		/* ne jamais effectuer de limitation du nombre de projet car, lorsqu'on édite une institution, le "projet"
-
 
52
		   est obligatoire, cependant, si l'ID du projet de cette institution n'est pas présent dans la première page
-
 
53
		   de la liste dynamique téléchargée initialement (offset 0 -> 10), le champ reste invalide / rouge,
-
 
54
		   rendant impossible la modification rapide de la structure.
49
		HashMap<String, String> restrictions = new HashMap<String, String>();
55
 
50
		
56
		   Pour cette raison, la liste des projets est toujours récupérée en intégralité. */
51
		if (nbElements != -1) {
57
		if (false && nbElements != -1) {
Line 52... Line 58...
52
			restrictions.put("limit", String.valueOf(nbElements));
58
			restrictions.put("limit", String.valueOf(nbElements));
53
		}
59
		}
Line 212... Line 218...
212
			info.setDeboguage("La réponse n'est pas une chaine JSON.");
218
			info.setDeboguage("La réponse n'est pas une chaine JSON.");
213
		}
219
		}
214
		info.setDonnee(1, idsNonSuppr);
220
		info.setDonnee(1, idsNonSuppr);
215
		vueARafraichir.rafraichir(info);
221
		vueARafraichir.rafraichir(info);
216
	}
222
	}
217
}
-
 
218
223
}
-
 
224