Re: t5components/TabSet

2009-05-06 Thread Fernanda C. Carmo
Thank you, Thiago!!! You solved my problem. I'm going to study more about binding parameters ;) Thiago H. de Paula Figueiredo wrote: > > Em Wed, 06 May 2009 15:56:59 -0300, Fernanda C. Carmo > escreveu: >> tml: panelIds="listPanelIds" > > Try pan

t5components/TabSet

2009-05-06 Thread Fernanda C. Carmo
Hi, Given t5components/TabSet: http://87.193.218.134:8080/t5components/t5c-commons/ref/org/apache/tapestry/commons/components/TabSet.html In the example, we have panelIds="list:'stuff1','stuff2','stuff3'". But I'm trying to do the TabSet with dynamic "panelIds" parameter. The "panelIds" par

Re: T5 - app.properties using charset "iso-8859-1"

2009-04-09 Thread Fernanda C. Carmo
_xx.properties to UTF-8. > > Roberto. > > > Fernanda C. Carmo ha scritto: >> It´s possible to tell Tapestry (5.0.18) to use a diferent charset >> (especifically "iso-8859-1") when reading the properties file? How i do >> it? >> I put >>

T5 - app.properties using charset "iso-8859-1"

2009-04-09 Thread Fernanda C. Carmo
It´s possible to tell Tapestry (5.0.18) to use a diferent charset (especifically "iso-8859-1") when reading the properties file? How i do it? I put configuration.add(SymbolConstants.CHARSET, "iso-8859-1"); in the contributeApplicationDefaults(MappedConfiguration configuration) method and I

Re: multiple context values

2009-04-02 Thread Fernanda C. Carmo
Thiago and Filip, thank you very much! Actually, I have an object ProjectVersion with the composite primary key. So in ListProjectVersionPage I would like to go to EditProjectVersionPage this way: public Object onActionFromEditProjectVersion(EventContext context) { Integer

Re: multiple context values

2009-04-01 Thread Fernanda C. Carmo
I have an object Product and it has a composite primary key (ProductId). How can I put this object Product in actionlink's context value? Thank's!!! Geoff Callender-2 wrote: > > You need the "list" binding prefix so you can do this: > t:context="list:p.productId, p.categoryId". It's avail