Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1447 Rev 1462
Line 201... Line 201...
201
	-----------------------------*/
201
	-----------------------------*/
202
	public void rafraichir(Object nouvellesDonnees) {
202
	public void rafraichir(Object nouvellesDonnees) {
203
		if (nouvellesDonnees instanceof Information) {
203
		if (nouvellesDonnees instanceof Information) {
204
			Information info = (Information) nouvellesDonnees;
204
			Information info = (Information) nouvellesDonnees;
205
			if (info.getType().equals("selectionnerValeurCombo")) {
205
			if (info.getType().equals("selectionnerValeurCombo")) {
206
				if (combo.getStore().findModel(champValeurInitiale, valeurInitiale) == null) Debug.log("ERREUR. Modele non trouvé");
206
				if (combo.getStore().findModel(champValeurInitiale, valeurInitiale) == null) {
-
 
207
					Debug.log("ERREUR. Modele non trouvé.");
-
 
208
					Debug.log("Recherché : ["+champValeurInitiale+"]="+valeurInitiale);
-
 
209
					Debug.log("Les propriétés des modèles sont :");
-
 
210
					for (int i=0; i<combo.getStore().getCount(); i++) {
-
 
211
						Debug.log(combo.getStore().getAt(i).getProperties().toString());
-
 
212
					}
-
 
213
				}
207
				else combo.setValue(combo.getStore().findModel(champValeurInitiale, valeurInitiale));
214
				else combo.setValue(combo.getStore().findModel(champValeurInitiale, valeurInitiale));
208
			}
215
			}
209
		}
216
		}
210
	}
217
	}