On Tue, 10 Aug 2010 10:07:21 -0300, Borut Bolčina <borut.bolc...@gmail.com> wrote:

Hi,

Hi!

is it possible to programmatically (rather then from localized properties
file) set label string to display

<t:label for="email"/><br/>
<input t:type="TextField" t:id="email" ... size="30"/>

something like

    String getEmailLabel() {
        return "something from database";
    }

It is:

<t:label for="email">${emailLabel}</label>

You can also use the label parameter of the form field components for that:

<input t:type="TextField" t:id="email" t:label="prop:emailLabel" size="30"/>

--
Thiago H. de Paula Figueiredo
Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and instructor
Owner, Ars Machina Tecnologia da Informação Ltda.
http://www.arsmachina.com.br

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to