Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 685 Rev 851
Line 156... Line 156...
156
			}
156
			}
157
		} else if (nouvellesDonnees instanceof Information) {
157
		} else if (nouvellesDonnees instanceof Information) {
158
			Information info = (Information) nouvellesDonnees;
158
			Information info = (Information) nouvellesDonnees;
159
			if (info.getType().equals("suppression_structure")) {
159
			if (info.getType().equals("suppression_structure")) {
160
				// Affichage d'un message d'information 
160
				// Affichage d'un message d'information 
161
				//GWT.log(info.toString(), null);
-
 
162
				Info.display(i18nC.suppressionStructure(), info.toString().replaceAll("\n", "<br />"));
161
				Info.display(i18nC.suppressionStructure(), info.toString().replaceAll("\n", "<br />"));
Line 163... Line 162...
163
 
162
 
164
				// Suppression des structures sélectionnées de la grille
163
				// Suppression des structures sélectionnées de la grille
165
				List<Structure> selectionStructure = grille.getSelectionModel().getSelectedItems();
164
				List<Structure> selectionStructure = grille.getSelectionModel().getSelectedItems();
166
				final int taille = selectionStructure.size();
165
				final int taille = selectionStructure.size();
167
				for (int i = 0; i < taille; i++) {
-
 
168
					//GWT.log("INDEX :"+table.indexOf(selectionStructure.get(i)), null);
166
				for (int i = 0; i < taille; i++) {
169
					store.remove(selectionStructure.get(i));
167
					store.remove(selectionStructure.get(i));
Line 170... Line 168...
170
				}
168
				}