In the parent page I have my CFwindow and cfajaximport tags. The
cfajaximport tag is NOT included in any of the source windows for the
cfwindow tag.

<cfajaximport tags = "cfwindow, cfform, cfdiv" />
<cfwindow name="mywindow"
    title="#County_Name# County Details"
    draggable="false"
    modal="true"
    resizable="false"
    initshow="false"
    height="350"
    width="350"
    center="true"
    refreshOnShow="true"
    source="WinCountyRegion.cfm?ID=#url.ID#" />

Later on in the page I have a couple links to POP this window up, each link
has its own source file.

<a href="javascript:void(0)"
onclick="ColdFusion.Window.show('mywindow');ColdFusion.navigate('WinCountyRegion.cfm?ID=#url.ID#','mywindow')">#Region_Name#</a>

Inside that page I use a self submitting Cfform and pull some data from some
CFC's  So far everything is GREAT!

But at the bottom of that page I have a link that replaces the source of the
window with a new admin window to perform CRUD operations.

I've tried it both this way:

<a href="<cfoutput>#AjaxLink('WinRegion.cfm')#</cfoutput>">Edit Regions</a>

And this way:

<a href="javascript:ColdFusion.navigate('WinRegion.cfm','mywindow');">Edit
Regions</a>

But I always wind up with a Javascript error.

Error processing JavaScript in markup for element mywindow_body:
[Enable debugging by adding 'cfdebug' to your URL parameters to see more
information]

I have tested all these pages independently and they work fine outside the
CFwindow.

I might note this does not happen in my Developer version(windows XP) in my
Test environment(Windows '03).  Only on my VPS at HostMySite.  But I cant
seem to find a difference between the environments.  Both have the latest
patches.

Any Thoughts what I'm doing wrong here?

-- 
-- 
Richard Dillman
[EMAIL PROTECTED]

"There are painters who transform the sun to a yellow spot, but there are
others who with the help of their art and their intelligence, transform a
yellow spot into the sun."
- Pablo Picasso


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315314
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to