Darwin,

<@COL NUM=2 ENCODING="JAVASCRIPT">

Will also solve your problem.

That's what javascript encoding is there for.

/John

----- Original Message -----
From: "darwn" <[EMAIL PROTECTED]>
To: "Multiple recipients of list witango-talk" <[EMAIL PROTECTED]>
Sent: Thursday, November 14, 2002 7:45 AM
Subject: RE: Witango-Talk: db driven drop down menu


> Thank you Dave.
> I realized that there was a problem with the data I was trying to pass
back
> to the Option object.
> Some of the data values had a "'" in it.
> replacing the ' with another character fixed it.
> Thanks.
>
> <script language="JavaScript"><!--
> parent.form.theForm.thirdPopup.options.length = 0;
> <@rows array=menu2array>
> parent.form.theForm.thirdPopup.options[<@calc expr='<@currow>-1'>] = new
> Option('<@COL 1>: <@REPLACE STR="<@col 2>" FINDSTR="<@CHAR code=39>"
> REPLACESTR="">');
> </@rows>
> //-->
> </script>
>
>
> darwin
>
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:owner-witango-talk@;witango.com]On Behalf Of David Shelley
> Sent: Wednesday, November 13, 2002 10:59 AM
> To: Multiple recipients of list witango-talk
> Subject: RE: Witango-Talk: db driven drop down menu
>
>
> Darwin,
>
> Try this in the finddetail results html:
>
> parent.form.theForm.thirdPopup.options.length = 0;
> <@rows array=menu2array>
> parent.form.theForm.thirdPopup.options[<@calc expr='<@currow>-1'>] = new
> Option('<@col 1>');
> </@rows>
>
> Dave Shelley
> [EMAIL PROTECTED]
> Visit tango.ca for expert developer assistance, custom business
applications
> or application audits.
>
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:owner-witango-talk@;witango.com]On Behalf Of darwn
> Sent: Wednesday, November 13, 2002 1:24 PM
> To: Multiple recipients of list witango-talk
> Subject: RE: Witango-Talk: db driven drop down menu
>
>
> Thanks for catching that typo, however, that did not solve my problem.
I've
> attached the .taf for reference.
>
>
> darwin
>
>
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:owner-witango-talk@;witango.com]On Behalf Of Harpreet Matharu
> Sent: Wednesday, November 13, 2002 10:12 AM
> To: Multiple recipients of list witango-talk
> Subject: RE: Witango-Talk: db driven drop down menu
>
>
> you might wanna check your spelling for 'thridPopup', should be
'thirdPopup'
>
>
> cheers
> Harpreet
>
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:owner-witango-talk@;witango.com]On Behalf Of darwn
> Sent: Wednesday, November 13, 2002 11:07 AM
> To: Multiple recipients of list witango-talk
> Subject: Witango-Talk: db driven drop down menu
>
>
> I'm trying to build a series of 4 dynamic db driven drop down menus.
Select
> yr, the second box displays main categories avail. for that yr, choosing a
> main category will in turn display a list of avail. items in the 3rd list
> and so on.
> I am trying to do this with a hidden frame and code that I downloaded by
> David Shelley.  Creating a frame set like such:
> <FRAMESET ROWS="100%,0%" FRAMEBORDER=1 FRAMESPACING=0 BORDER=0>
> <FRAME SRC="<@appfile>?function=display" NAME=form FRAMEBORDER=no>
> <FRAME SRC="<@appfile>?function=hidden" NAME=query FRAMEBORDER=no>
> </frameset>
>
> I use this script to run the query in the hidden frame:
> <!-- JavaScript code
> function getPopupValues() {
> document.theForm.secondPopup.length=1;
> document.theForm.secondPopup[0].text='loading...';
> parent.query.location =
>
'<@cgi><@appfile>?<@UserReferenceArgument>&function=menu1&selectedyear='+esc
>
ape(document.theForm.firstPopup[document.theForm.firstPopup.selectedIndex].v
> alue);
> }
> // -->
> </script>
>
> and this script to pass the values back to the parent:
> <script language="JavaScript"><!--
> parent.window.form.document.theForm.thirdPopup.length = <@numrows
> array=menu2array>;
> <@rows>
> parent.window.form.document.theForm.thirdPopup[<@calc
> expr='<@currow>-1'>].text = '<@col 1>';
> parent.window.form.document.theForm.thridPopup[<@calc
> expr='<@currow>-1'>].value = '<@col 1>';
> </@rows>
> //-->
> </script>
>
>
> Upon selecting a year in menu1, using javascript onChange=some java script
> function, it will run a db query in the hidden frame and return the main
> cat. values via javascript back to second list menu2.  This works fine,
but
> the third menu is only displaying the first item of the resultset.  It's
> sort of hard to describe, this link will better explain it:
> http://64.32.155.99/test2.taf
>
> Here is a sample of what the database looks like:
> year main sub
> 2002 pap news1
> 2002 pap news1
> 2002 pap toil1
> 2002 pap toil2
> 2002 pulp semi1
> 2002 pulp sem2
> 2003 pulp sem3
> 2002 wood ply1
> 2002 wood ply2
>
>
> Any help would be appreciated.
>
>
> --
> Forestweb: The Source for Industry Intelligence
> Best Content -- Most Relevant -- Best Delivery
> http://www.Forestweb.com
> (310)553-0008
>
> ________________________________________________________________________
> TO UNSUBSCRIBE: send a plain text/US ASCII email to [EMAIL PROTECTED]
>                 with unsubscribe witango-talk in the message body
>
>
>
>
> ________________________________________________________________________
> TO UNSUBSCRIBE: send a plain text/US ASCII email to [EMAIL PROTECTED]
>                 with unsubscribe witango-talk in the message body

________________________________________________________________________
TO UNSUBSCRIBE: send a plain text/US ASCII email to [EMAIL PROTECTED]
                with unsubscribe witango-talk in the message body

Reply via email to