Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 858 Rev 860
Line 12... Line 12...
12
import com.extjs.gxt.ui.client.event.ButtonEvent;
12
import com.extjs.gxt.ui.client.event.ButtonEvent;
13
import com.extjs.gxt.ui.client.event.ComponentEvent;
13
import com.extjs.gxt.ui.client.event.ComponentEvent;
14
import com.extjs.gxt.ui.client.event.Events;
14
import com.extjs.gxt.ui.client.event.Events;
15
import com.extjs.gxt.ui.client.event.Listener;
15
import com.extjs.gxt.ui.client.event.Listener;
16
import com.extjs.gxt.ui.client.event.SelectionListener;
16
import com.extjs.gxt.ui.client.event.SelectionListener;
17
import com.extjs.gxt.ui.client.store.StoreEvent;
-
 
18
import com.extjs.gxt.ui.client.store.StoreListener;
-
 
19
import com.extjs.gxt.ui.client.widget.Info;
17
import com.extjs.gxt.ui.client.widget.Info;
20
import com.extjs.gxt.ui.client.widget.TabItem;
18
import com.extjs.gxt.ui.client.widget.TabItem;
21
import com.extjs.gxt.ui.client.widget.TabPanel;
19
import com.extjs.gxt.ui.client.widget.TabPanel;
22
import com.extjs.gxt.ui.client.widget.button.Button;
20
import com.extjs.gxt.ui.client.widget.button.Button;
23
import com.extjs.gxt.ui.client.widget.form.FieldSet;
21
import com.extjs.gxt.ui.client.widget.form.FieldSet;
Line 33... Line 31...
33
 
31
 
Line 34... Line 32...
34
	private ChampComboBoxListeValeurs typesCollectionCombo = null;
32
	private ChampComboBoxListeValeurs typesCollectionCombo = null;
35
	
33
	
36
	private TabPanel onglets = null;
34
	private TabPanel onglets = null;
37
	private TabItem generalOnglet = null;
35
	private TabItem generalOnglet = null;
38
	private TabItem auteurOnglet = null;
36
	private TabItem personneOnglet = null;
39
	private TabItem publicationOnglet = null;
37
	private TabItem publicationOnglet = null;
40
	private TabItem descriptionOnglet = null;
38
	private TabItem descriptionOnglet = null;
41
	private TabItem contenuOnglet = null;
39
	private TabItem contenuOnglet = null;
Line 90... Line 88...
90
		
88
		
91
		// Onlget formulaire GENERAL
89
		// Onlget formulaire GENERAL
Line 92... Line 90...
92
		ongletsCollectionDefaut.add(creerOngletGeneral());
90
		ongletsCollectionDefaut.add(creerOngletGeneral());
93
		
91
		
Line 94... Line 92...
94
		// Onlget formulaire AUTEUR
92
		// Onlget formulaire AUTEUR
95
		ongletsCollectionDefaut.add(creerOngletAuteur());
93
		ongletsCollectionDefaut.add(creerOngletPersonne());
Line 96... Line 94...
96
 
94
 
Line 104... Line 102...
104
		
102
		
105
		// Onlget formulaire GENERAL
103
		// Onlget formulaire GENERAL
Line 106... Line 104...
106
		ongletsCollectionHerbier.add(creerOngletGeneral());
104
		ongletsCollectionHerbier.add(creerOngletGeneral());
107
		
105
		
Line 108... Line 106...
108
		// Onlget formulaire AUTEUR
106
		// Onlget formulaire AUTEUR
109
		ongletsCollectionHerbier.add(creerOngletAuteur());
107
		ongletsCollectionHerbier.add(creerOngletPersonne());
Line 110... Line 108...
110
		
108
		
Line 129... Line 127...
129
	private TabItem creerOngletGeneral() {
127
	private TabItem creerOngletGeneral() {
130
		generalOnglet = new CollectionFormGeneral(this);
128
		generalOnglet = new CollectionFormGeneral(this);
131
		return generalOnglet;
129
		return generalOnglet;
132
	}
130
	}
Line 133... Line 131...
133
	
131
	
134
	private TabItem creerOngletAuteur() {
132
	private TabItem creerOngletPersonne() {
135
		auteurOnglet = new CollectionFormAuteur(this);
133
		personneOnglet = new CollectionFormPersonne(this);
136
		return auteurOnglet;
134
		return personneOnglet;
Line 137... Line 135...
137
	}
135
	}
138
	
136
	
139
	private TabItem creerOngletPublication() {
137
	private TabItem creerOngletPublication() {