Subversion Repositories eFlore/Applications.coel

Compare Revisions

Regard whitespace Rev 227 → Rev 246

/trunk/src/org/tela_botanica/client/vues/PersonneDetailPanneauVue.java
25,6 → 25,7
import com.extjs.gxt.ui.client.widget.TabPanel;
import com.extjs.gxt.ui.client.widget.form.Field;
import com.extjs.gxt.ui.client.widget.form.FieldSet;
import com.extjs.gxt.ui.client.widget.form.LabelField;
import com.extjs.gxt.ui.client.widget.form.TextArea;
import com.extjs.gxt.ui.client.widget.form.TextField;
import com.extjs.gxt.ui.client.widget.layout.CenterLayout;
146,6 → 147,10
img.setStyleName("logo-personne");
 
panneauImage.add(img);
// FIXME : problème avec la taille du panneau > ne se fixe pas automatiquement à la taille de l'image
panneauImage.setBorders(true);
}
panneauIdentite.add(fsContact);
251,9 → 256,8
tabAdresse.add(fsAdressePerso);
tabAdresse.setScrollMode(Scroll.AUTO);
/*
*/
 
 
layout();
}
}
262,9 → 266,10
if ((tfValue!=null)&&(!tfValue.toString().trim().equals(""))) {
TextField tf = new TextField();
tf.setFieldLabel(tfLabel);
LabelField tf = new LabelField();
tf.setFieldLabel(tfLabel + ":");
if ((tfLabel==null)||("".equals(tfLabel))) {
tf.setHideLabel(true);
tf.setStyleAttribute("margin", "0 0 0 105px");