Re: Contrib:table - session

2006-12-14 Thread Mind Bridge
Hi, Please bind the "persist" parameter of Table or TableView to "literal:client" -- this will store the Table state on the client side and will not require a session. Best regards, -mb Carlos.Fernandez wrote: > > Can you use the contrib:table without the use of an httpsession? > > I am curr

Re: Retrieving table column names

2006-08-30 Thread Mind Bridge
Hi, In the .properties file of your page (or component) you can add: user_username=Username ... and the table headers will automatically become the human-readable strings that you have defined there. In addition, there can be several .properties files that depend on the locale in the standard

Re: TapIDEA future, post "Time to move on"

2006-08-30 Thread Mind Bridge
Howard sugested Geoff as a Tapestry committer entirely based on his work on Spindle. In addition Geoff specifically asked you NOT to hijack his name for your vendetta. Do the facts matter to you at all? Secondly, I presume you have written code that adds the T4 features to T3, while keeping it ab

Re: Updating table model

2006-08-23 Thread Mind Bridge
Hi, Try lazy initialization -- create a propery, say TitleList: public abstract List getTitleList(); public abstract void setTitleList(List titleList); Modify the method getTitles() so that it gets the title list via getTitleList(). If it is null, then the provided code should be executed and t

Re: contrib:Table paging in @For loop

2006-07-21 Thread Mind Bridge
Hi, The reason this happens is that Table stores its state in a persistent property by default, which happens to be the same property when Table is placed in a For loop. Please implement ITableSessionStoreManager and provide the 'tableSessionStoreManager' parameter to Table. That will allow yo

Re: DirectLink in TableValue

2006-07-13 Thread Mind Bridge
Hi, Can you also send your XML (.page or .jwc), in particular the definition of the "tableView" component? -mb -- View this message in context: http://www.nabble.com/DirectLink-in-TableValue-tf1935446.html#a5306976 Sent from the Tapestry - User forum at Nabble.com. --

Re: How to go to a specific page on a table

2006-06-08 Thread Mind Bridge
Hi, If 'table' is a variable that points to your contrib:Table component, you could do: table.getTableModel().getPagingState().setCurrentPage(page); The page number is counted from 0. See the JavaDoc for the package org.apache.tapestry.contrib.table.model: http://jakarta.apache.org/tapestry/ta

Re: 508 compliance on FormTable

2006-05-30 Thread Mind Bridge
Please add an issue to JIRA -- this is an important issue... -- View this message in context: http://www.nabble.com/508+compliance+on+FormTable-t1706408.html#a4633061 Sent from the Tapestry - User forum at Nabble.com. - To unsu

Re: Can't get Tapestry to work with UTF-8 encoding

2006-05-30 Thread Mind Bridge
Strange. There is a unit test that verifies precisely that. Since Tapestry cannot be built without the correct execution of the unit tests, I suspect that the problem is either the naming of the .application file or in the version of Tapestry. What happens when you have "-Dorg.apache.tapestry.te

Re: contrib:Table and utf-8 characters

2006-05-29 Thread Mind Bridge
As mentioned in another email, you can specify the character set which your .property files use by placing the following in your .application: You may set the value to "UTF-8" or "ISO-8859-1" or something like that. (I presume you use T4) -mb

Re: Can't get Tapestry to work with UTF-8 encoding

2006-05-29 Thread Mind Bridge
Hi Galam, How do you get the data that is not outputted in the correct encoding? I haven't seen an explanation of that in your messages, but I am guessing that it is obtained from a file or from something like a database. As a result the data is not read properly and is "mangled" _before_ it r

Re: How to disable session management of contrib.Table?

2006-05-19 Thread Mind Bridge
Just call the reset() method in Table (or in TableView if you use that) when you make a new search. That will clear up the state (e.g. which page you are on). - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands