RE: [Tapestry-developer] table component

2002-12-03 Thread Luke Galea
elopment BlueCat Networks 905-762-5225 -Original Message- From: Joseph Panico [mailto:[EMAIL PROTECTED]] Sent: December 2, 2002 5:59 PM To: Luke Galea; [EMAIL PROTECTED] Subject: RE: [Tapestry-developer] table component Haven't tried the checkbox yet. But I am wondering if there is a

RE: [Tapestry-developer] table component

2002-12-02 Thread Joseph Panico
Haven't tried the checkbox yet. But I am wondering if there is a straightforward way to embed Tapestry Links into the Table. Joseph Panico [EMAIL PROTECTED] From: "Luke Galea" <[EMAIL PROTECTED]> To: "Joseph Panico" <[EMAIL PROTECTED]>,<[EMAIL PROT

RE: [Tapestry-developer] table component

2002-12-02 Thread Luke Galea
Funny.. I just went through that recently. I think that is the only way to do it.. at least the only way I could think of (modifying the Image component). I am curious, I have what I think is a common case: I want to have a column of check boxes (ie. To indicate which entries to delete ). Did you

Re: [Tapestry-developer] Table component and wrapped checkbox component

2002-11-26 Thread Mind Bridge
Hi Juan, The rewind is performed in exactly the same way as the render, except that no output is produced. In other words, all mutators that would be invoked during render (such as the property set by the iterator), would be invoked during rewind as well. Best regards, -mb    Juan Alvarez <[EMAIL P

Re: [Tapestry-developer] Table component and wrapped checkbox component

2002-11-26 Thread Juan Alvarez
Excelent response, but i have one more question, the component ListLocale suppose that the setCurrentLocale occurs before the getCurrentLocale? all muttators are called in the rewind process? thx for all support to the development and users of tapestry, greatings from colombia On Tue, Nov 26, 20

Re: [Tapestry-developer] Table component and wrapped checkbox component

2002-11-26 Thread Mind Bridge
Hi Juan, When a component is in a foreach component and this foreach component isin a form component, numeric identifier are automatically appended tothe name of the component? Yes, this is one of the great parts of Tapestry -- form elements are assigned unique names automatically behind the scenes

Re: [Tapestry-developer] Table component session sate manager

2002-11-11 Thread Mind Bridge
Hi Luke, Just some background for other people who may be reading: the Session State Manager determines what part of the model will be saved in the session, and what part will be "recreated" when the next request occurs. This helps you control the size of the session data. For example, the FullTabl

Re: [Tapestry-developer] Table component

2002-11-05 Thread Mind Bridge
Hi Niklas, There are two things that you should make sure that are working if you see nothing in the table: 1) getCurrentPageRows() in your TableModel should return a non-empty Iterator (the rows of the table) 2) The ColumnModel should return at least one column. If both of these are true, then th