I have a a Tapestry Gird with an ActionLink as the last column. Clicking on
the link i open a JQuery Dialog. Now i have to read the information from the
Row of the Grid and show it in the PopupDialog. The Grid part is fine, but
the object does not render in the popup.

This is my Grid

<t:zone t:id="searchTransactionZone" id="searchTransactionZone">
    <div class="tableDv">
        <t:grid t:source="pickupQuotes" t:row="selectedQuote"
t:rowsPerPage="5"
            t:inPlace="true" t:pagerPosition="top" add="action">
            <p:actionCell>
                                   
                <t:jquery.dialogajaxlink t:id="link2" t:dialog="myDialog"
t:zone="myZone" t:context="selectedQuote" class="process">
                    Process Teller
                    </t:jquery.dialogajaxlink>    
            </p:actionCell>
            <p:empty>
            </p:empty>
        </t:grid>
    </div>
</t:zone>

and below this is the code for my popup. 

<t:jquery.dialog t:clientId="myDialog">
    <t:zone t:id="prcessTellerTransactionZone"
id="prcessTellerTransactionZone">
        <div class="popup">
    <div class="popup-header">
         <${context:/statics/images/logo-popup.png}> 
        
Processing Remittance

    </div>
    

        

                ${message:date-sent}
                ${selectedQuote.dateOfTransaction}
        
        

                ${message:recipient}
                ${selectedQuote.recipientName}
        
        

                ${message:amount}
                ${selectedQuote.transactionAmount}
        
        

                ${message:unique-id}
                ${selectedQuote.transactionId}
        
        

                ${message:sender}
                ${selectedQuote.senderName}
        
        

                ${message:location}
                ${selectedQuote.senderCountry}
        
    

    <t:form t:id="processQuoteForm">
        <p class="transaction-Fld">
            <input t:type="textField" t:id="transactionNumber"
class="txtFld"
                t:validate="required,minlength=5" />
        </p>
        <input type="submit" value="Dispense Cash" class="search-btn" />
    </t:form>
</div>
    </t:zone>
</t:jquery.dialog>

Now the selected Quote object in the Grid is OK, but i cannot read the
values in the dialog. What am i doing wrong  ? 







--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/JQuery-Dialog-not-showing-information-tp5718837.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

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

Reply via email to