Subversion Repositories eFlore/Applications.coel

Rev

Rev 1513 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1513 Rev 1680
Line 38... Line 38...
38
	private EditorGrid<Valeur> grille;
38
	private EditorGrid<Valeur> grille;
39
	//private int nbLogs = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbLogs"));
39
	//private int nbLogs = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbLogs"));
40
	private ListStore<Valeur> store;
40
	private ListStore<Valeur> store;
41
	public FenetreJournal(Mediateur mediateur)	{
41
	public FenetreJournal(Mediateur mediateur)	{
Line 42... Line 42...
42
		
42
		
43
		this.setHeading(mediateur.i18nC.titreJournal());
43
		this.setHeadingHtml(mediateur.i18nC.titreJournal());
44
		this.setWidth(500);
44
		this.setWidth(500);
45
		this.setHeight(500);
45
		this.setHeight(500);
Line 46... Line 46...
46
		setLayout(new FitLayout());
46
		setLayout(new FitLayout());
47
		
47
		
48
		// Définition des colomnes de la grille:
48
		// Définition des colomnes de la grille:
Line 49... Line 49...
49
		RowNumberer numeroPlugin = new RowNumberer();
49
		RowNumberer numeroPlugin = new RowNumberer();
50
		numeroPlugin.setHeader("#");
50
		numeroPlugin.setHeaderHtml("#");
51
		
51
		
52
		XTemplate infoTpl = XTemplate.create("<p>"+
52
		XTemplate infoTpl = XTemplate.create("<p>"+
Line 78... Line 78...
78
	
78
	
79
	public void rafraichir(Object nouvellesDonnees) {
79
	public void rafraichir(Object nouvellesDonnees) {
80
		if (nouvellesDonnees instanceof InfoConfig)	{
80
		if (nouvellesDonnees instanceof InfoConfig)	{
81
			InfoConfig info = (InfoConfig) nouvellesDonnees;
81
			InfoConfig info = (InfoConfig) nouvellesDonnees;
82
			id++;
82
			id++;
83
			Valeur v = new Valeur(String.valueOf(id), info.title, null, info.text);
83
			Valeur v = new Valeur(String.valueOf(id), info.titleHtml, null, info.html);
84
			v.set("heure", getDate());
84
			v.set("heure", getDate());
Line 85... Line 85...
85
			store.add(v);
85
			store.add(v);
86
			
86