I'll take a look at your sample code in a sec but real quickly....a lot of times when you see page content just "disappear" it means that there's an error and Farcry has silently caught the exception. Try adding "debug=1" to the URL of the offending page. If there is an error you should see the exception with this.
~tom On Fri, 11 Mar 2005 15:28:34 -0500, Jaci Chesnes <[EMAIL PROTECTED]> wrote: > > > > I have created a node in the file section of the farcry site called guides. > What I want is to populate a select box with all of the pdfs that are > present in this node and when selected pop them open in a new window. This > is what I have and its causing the content for the entire page to disappear > can someone tell me what need corrected. > > > > <cfscript> > > // get navigation elements to root > > navFilter=arrayNew(1); > > navfilter[1]="status IN (#listQualify(request.mode.lvalidstatus, > "'")#)"; > > > > qguides = > application.factory.oTree.getdescendants(objectid=application.navid.guides, > depth=1, afilter=navFilter, lColumns='filename'); > > </cfscript> > > > > > > <form action="../"> > > <b>An Agents Guides To...</b><br> > > <select onchange="parseNavigation(this)"> > > <option>Choose a guide</option> > > <cfloop query="qguides"><option > value="files/#qguides.filename#">#qguides.lNavIDAlias #</option> > > <cfloop> > > </select> > > </form> > > > > Thanks > > > > Jaci --- > You are currently subscribed to farcry-dev as: [EMAIL PROTECTED] > To unsubscribe send a blank email to > [EMAIL PROTECTED] Aussie Macromedia Developers: > http://lists.daemon.com.au/ --- You are currently subscribed to farcry-dev as: [email protected] To unsubscribe send a blank email to [EMAIL PROTECTED] Aussie Macromedia Developers: http://lists.daemon.com.au/
