Line 68... |
Line 68... |
68 |
import org.tela_botanica.client.vues.structure.StructureVue;
|
68 |
import org.tela_botanica.client.vues.structure.StructureVue;
|
Line 69... |
Line 69... |
69 |
|
69 |
|
70 |
import com.extjs.gxt.ui.client.GXT;
|
70 |
import com.extjs.gxt.ui.client.GXT;
|
71 |
import com.extjs.gxt.ui.client.Registry;
|
71 |
import com.extjs.gxt.ui.client.Registry;
|
- |
|
72 |
import com.extjs.gxt.ui.client.Style.LayoutRegion;
|
72 |
import com.extjs.gxt.ui.client.Style.LayoutRegion;
|
73 |
import com.extjs.gxt.ui.client.data.DataProxy;
|
73 |
import com.extjs.gxt.ui.client.event.Listener;
|
74 |
import com.extjs.gxt.ui.client.event.Listener;
|
74 |
import com.extjs.gxt.ui.client.event.MessageBoxEvent;
|
75 |
import com.extjs.gxt.ui.client.event.MessageBoxEvent;
|
75 |
import com.extjs.gxt.ui.client.util.Margins;
|
76 |
import com.extjs.gxt.ui.client.util.Margins;
|
76 |
import com.extjs.gxt.ui.client.widget.Component;
|
77 |
import com.extjs.gxt.ui.client.widget.Component;
|
Line 358... |
Line 359... |
358 |
// Rafraichissement du panneau Centre
|
359 |
// Rafraichissement du panneau Centre
|
359 |
if (panneauCentre != null) {
|
360 |
if (panneauCentre != null) {
|
360 |
panneauCentre.rafraichir(info);
|
361 |
panneauCentre.rafraichir(info);
|
361 |
}
|
362 |
}
|
362 |
}
|
363 |
}
|
363 |
|
364 |
|
364 |
public void modifierUtilisateur() {
|
365 |
public void modifierUtilisateur() {
|
365 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
366 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
366 |
panneauNord.rafraichir(utilisateurCourant);
|
367 |
panneauNord.rafraichir(utilisateurCourant);
|
367 |
modele.modifierUtilisateur(this, utilisateurCourant);
|
368 |
modele.modifierUtilisateur(this, utilisateurCourant);
|
368 |
}
|
369 |
}
|
369 |
|
370 |
|
370 |
//+----------------------------------------------------------------------------------------------------------------+
|
371 |
//+----------------------------------------------------------------------------------------------------------------+
|
371 |
// GESTION DES VALEURS ET LISTES
|
372 |
// GESTION DES VALEURS ET LISTES
|
372 |
//+----------------------------------------------------------------------------------------------------------------+
|
373 |
//+----------------------------------------------------------------------------------------------------------------+
|
Line -... |
Line 374... |
- |
|
374 |
|
- |
|
375 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, int listeId) {
|
- |
|
376 |
modele.obtenirListeValeurs(vueARafraichir, "identifiant", listeId);
|
- |
|
377 |
}
|
373 |
|
378 |
|
374 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String listeId) {
|
379 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String listeId) {
|
375 |
modele.obtenirListeValeurs(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId));
|
380 |
modele.obtenirListeValeurs(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId));
|
Line -... |
Line 381... |
- |
|
381 |
}
|
- |
|
382 |
|
- |
|
383 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String nomListe, boolean pagination, String recherche, int start, int nbElements) {
|
- |
|
384 |
modele.obtenirListeValeurs(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(nomListe), pagination, recherche, start, nbElements);
|
376 |
}
|
385 |
}
|
377 |
|
386 |
|
378 |
public void obtenirValeurEtRafraichir(Rafraichissable vue, String listeId, String identifiantValeur) {
|
387 |
public void obtenirValeurEtRafraichir(Rafraichissable vue, String listeId, String identifiantValeur) {
|
Line 379... |
Line 388... |
379 |
modele.obtenirValeur(vue, "abv", ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), identifiantValeur);
|
388 |
modele.obtenirValeur(vue, "abv", ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), identifiantValeur);
|