To give you an example from my own work, taken almost directly from
the tutorial I linked in my last email:

-- HTML file --
<table border="1" jwcid="resultsTable">
                    <span jwcid="[EMAIL PROTECTED]">
                        <span jwcid="jumpLink">
                            <span jwcid="jumpLinkText" />
                        </span>
                    </span>
                </table>

(In your case, you'd use TitleColumnValue.)

-- Page Specification file --
    <component id="jumpLink" type="DirectLink">
        <binding name="listener" expression="listeners.jump" />
        <binding name="parameters"
expression="components.resultsTable.tableRow.id" />
    </component>
    
    <component id="jumpLinkText" type="InsertText">
        <binding name="value"
expression="components.resultsTable.tableRow.name" />
    </component>
    
    <component id="resultsTable" type="contrib:Table">
        <binding name="source" expression="searchResults" />
        <binding name="columns" expression="columns" />
        <binding name="row" expression="searchResult" />
    </component>

Again, this is taken almost directly from the TapestryTables example project.

On 8/25/05, Frank <[EMAIL PROTECTED]> wrote:
> How does this get coded in the contrib:Table?
> 
> So far I have:
> 
> 
> <table jwcid="[EMAIL PROTECTED]:Table" width="90%"
>          source="ognl:toDoList"
>          columns="Title:title,Id:id"
>          pageSize=20/>
> 
> 
> Regards,
> 
> Frank
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to