Hi!

I have the a TariffData.java object that I'm trying to use the BeanEditForm
component with. Tapestry does not return any errors, but the form is empty: only Create/Update button, no edit fields, no labels...

In doing so, the logs shows that the Tapestry is requesting and receiving data:

[ENTER] getTariffData()
[ EXIT] getTariffData [TarifDataImpl{id=1, fix=2, coeff=2,000000, min=15, max=300}]


My template is as follows:

<t:beaneditform t:id="systemTariffEditor"
        t:object="tariffData"
        exclude="id">
</t:beaneditform>


My TariffData.java interface looks as follows:

public interface TariffData {

    Integer getId();

    Long getFix();

    Double getCoeff();

    Long getMin();

    Long getMax();
}


Any help is appreciated.

--
Best regards,
Anton Marchenkov.


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

Reply via email to