Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 908 → Rev 909

/trunk/src/org/tela_botanica/del/client/i18n/Vocabulary.java
61,6 → 61,15
String aucunResultat();
 
/**
* Translated "Aucun vote n'a été effectué sur cette détermination, soyez le premier a voter !".
*
* @return translated "Aucun vote n'a été effectué sur cette détermination, soyez le premier a voter !"
*/
@DefaultStringValue("Aucun vote n'a été effectué sur cette détermination, soyez le premier a voter !")
@Key("aucunVoteEffectue")
String aucunVoteEffectue();
 
/**
* Translated "Publié par".
*
* @return translated "Publié par"
/trunk/src/org/tela_botanica/del/client/i18n/Vocabulary.properties
106,6 → 106,9
monVote = Mon vote
nbVotes = vote(s)
votez = Votez
 
#ecran detail de votes détermination
aucunVoteEffectue = Aucun vote n'a été effectué sur cette détermination, soyez le premier a voter !
valeurVote = Vote
 
#composant recherche simple
/trunk/src/org/tela_botanica/del/client/composants/votes/details/DetailListeVotesDeterminationVue.ui.xml
11,5 → 11,6
<g:HTMLPanel ui:field="panneauChargement" styleName="{style.chargement}">
<g:Image url="./img/wait.gif"></g:Image>
</g:HTMLPanel>
<g:HTMLPanel ui:field="aucuneDonnees" visible="false"><g:Label text="{constants.aucunVoteEffectue}"></g:Label></g:HTMLPanel>
</g:HTMLPanel>
</ui:UiBinder>
/trunk/src/org/tela_botanica/del/client/composants/votes/details/DetailListeVotesDeterminationPresenteur.java
20,6 → 20,7
void ajouterVote(VoteDetermination vote);
void stopChargement();
void startChargement();
public void afficherAucuneDonnees();
}
private Vue vue;
44,6 → 45,9
propositionDetermination.setVotesDeterminations(UtilitairesServiceResultat.parserRetourListeVotesDetermination(messageRetour, propositionDetermination));
vue.afficherVotes(propositionDetermination);
vue.stopChargement();
} else {
vue.afficherAucuneDonnees();
vue.stopChargement();
}
 
}
/trunk/src/org/tela_botanica/del/client/composants/votes/details/DetailListeVotesDeterminationVue.java
28,7 → 28,7
};
@UiField
HTMLPanel titre;
HTMLPanel titre, aucuneDonnees;
@UiField
Panel panneauChargement;
96,4 → 96,9
public void stopChargement() {
panneauChargement.setVisible(false);
}
 
@Override
public void afficherAucuneDonnees() {
aucuneDonnees.setVisible(true);
}
}