Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 989 Rev 1291
Line 91... Line 91...
91
		
91
		
Line 92... Line 92...
92
		this.setSize(300, 75);
92
		this.setSize(300, 75);
Line -... Line 93...
-
 
93
		
93
		
94
		OK.addListener(new ButtonListenerAdapter() {
94
		OK.addListener(new ButtonListenerAdapter() {
95
 
95
 
96
			@Override
96
			public void onClick(com.gwtext.client.widgets.Button button,
97
			public void onClick(com.gwtext.client.widgets.Button button,
97
					EventObject e) {
98
					EventObject e) {
Line 102... Line 103...
102
			}
103
			}
103
		});
104
		});
Line 104... Line 105...
104
		
105
		
Line -... Line 106...
-
 
106
		annuler.addListener(new ButtonListenerAdapter() {
105
		annuler.addListener(new ButtonListenerAdapter() {
107
 
106
 
108
			@Override
107
			public void onClick(com.gwtext.client.widgets.Button button,
109
			public void onClick(com.gwtext.client.widgets.Button button,
108
					EventObject e) {
110
					EventObject e) {
109
				close();
111
				close();
Line 110... Line 112...
110
			}
112
			}
Line -... Line 113...
-
 
113
		});
111
		});
114
		
Line 112... Line 115...
112
		
115
		listeUtil.addKeyPressListener(new EventCallback() {
Line 113... Line 116...
113
		listeUtil.addKeyPressListener(new EventCallback() {
116
 
Line 152... Line 155...
152
			}
155
			}
153
		});
156
		});
Line 154... Line 157...
154
		
157
		
Line -... Line 158...
-
 
158
		listeUtil.addListener(new ComboBoxListenerAdapter() {
155
		listeUtil.addListener(new ComboBoxListenerAdapter() {
159
 
Line 156... Line 160...
156
 
160
			@Override
157
			public void onSelect(ComboBox comboBox, Record record, int index) {
161
			public void onSelect(ComboBox comboBox, Record record, int index) {
158
				
162
				
Line 159... Line 163...
159
				utilisateur = record.getAsString("courriel");
163
				utilisateur = record.getAsString("courriel");
160
				idUtilisateur = record.getAsString("id_utilisateur");
164
				idUtilisateur = record.getAsString("id_utilisateur");
161
				listeUtil.setValue(utilisateur);
165
				listeUtil.setValue(utilisateur);
Line -... Line 166...
-
 
166
				
162
				
167
			}
163
			}
168
		});
Line 164... Line 169...
164
		});
169
	}