Wrox Programmer Forums
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 3rd, 2007, 06:41 PM
Registered User
 
Join Date: Jun 2007
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default Iterator Scope Problem

I have a problem in passing a list to a function

<logic:present name="mlsList">
                    <logic:iterate id="mlsList"
                        name="mlsList">
                    <bean:define id="ml"
                        name="mlsList"
                        type="com.tam.tr.util.MLSAccountBean" />
<tr>
<td nowrap="">&nbsp;<bean:write name="ml" property="from_date"/></td>
        <td nowrap="">&nbsp;<bean:write name="ml" property="to_date"/></td>
</tr>
    </logic:iterate>
</logic:present>
</table>
<table>
<tr>
<input type="button" value="Show" onClick="addFun(this.form.model,this.form.source); ">
</tr>
</table>

function addRow(mlist,slist)
{
alert("I got "+mlist[0].text+ "and"+mlist[0].text);
}


I get the alert as I got Undefined and Undefined


If I remove the logic & iteration then it works fine.
Why is the iterator causing problems ? any solutions ?
thanks.



 
Old July 4th, 2007, 01:26 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

I'm not familiar with the elements in the logic and bean namespaces but to debug you need to show the actual HTML that the browser renders. You also have a call to addFun but a function named addRow.

--

Joe (Microsoft MVP - XML)





Similar Threads
Thread Thread Starter Forum Replies Last Post
Help: Arrays using JavaScript,/JSP Iterator in IE celticbhoy Javascript How-To 3 December 11th, 2007 10:55 AM
iterator..... s Larryz C# 2005 0 May 9th, 2007 04:06 PM
Scope resolution problem _fluffy_ BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 2 October 16th, 2006 09:37 AM
scope problem jc Javascript 0 July 29th, 2003 09:27 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.