Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1667 Rev 1934
Line 44... Line 44...
44
	@UiField
44
	@UiField
45
	Anchor lienIdentiplante; 
45
	Anchor lienIdentiplante; 
Line 46... Line 46...
46
	
46
	
47
	public MetadonneesVue() {
47
	public MetadonneesVue() {
48
		initWidget(binder.createAndBindUi(this));
-
 
49
 
48
		initWidget(binder.createAndBindUi(this));
50
		// Le lien ne doit être affiché que sur pictoflora
49
		// Le lien ne doit être affiché que sur pictoflora
51
		String urlCourante = Window.Location.getHref();
50
		String urlCourante = Window.Location.getHref();
52
		Config config = new Config();
51
		Config config = new Config();
53
		String urlAppliImg = config.getUrl("pictoflora");
52
		String urlAppliImg = config.getUrl("pictoflora");
Line 164... Line 163...
164
	@Override
163
	@Override
165
	public void masquerChampsVides() {
164
	public void masquerChampsVides() {
166
		HasText[] champs = {nomRetenu, nomCommun, famille, localite, auteur, motsClefs, commentaire, milieu, lieuDit, dateReleve, dateTransmission};
165
		HasText[] champs = {nomRetenu, nomCommun, famille, localite, auteur, motsClefs, commentaire, milieu, lieuDit, dateReleve, dateTransmission};
167
		for (int i = 0; i < champs.length; i ++) {
166
		for (int i = 0; i < champs.length; i ++) {
168
			HasText champ = champs[i];
167
			HasText champ = champs[i];
169
			if ("".equals(champ.getText())) {
168
			if (champ.getText() == null || champ.getText().isEmpty()) {
170
				Widget widget = (Widget) champ;
169
				Widget widget = (Widget) champ;
171
				widget.getParent().setVisible(false);
170
				widget.getParent().setVisible(false);
172
			}
171
			}
173
		}
172
		}
174
	}
173
	}