CF8 = button = javascript/cfwindow = occasional = Error retrieving markup for element

2009-10-14 Thread Robert Bell
Hi, I am having some problems with windows/xp boxes running IE7 with one of the cfm pages I created. I am kinda at a loss to why it is happening, because on my test machines it works flawlessly. Any ideas on why we could the error below would be appreciated. The page uses a cfform with a

Re: CF8 = button = javascript/cfwindow = occasional = Error retrieving markup for element

2009-10-14 Thread Mark Atkinson
One thing that jumps out is this: #oi_window + 108# (2 instances) Is this what you're trying to do: #evaluate(oi_window + 108)# assuming oi_window is numeric? I think that might affect retrieving the markup. -- Mark Atkinson AOCS Web | www.aocs.org 217-693-4839 Robert Bell wrote: Hi,

Re: CF8 = button = javascript/cfwindow = occasional = Error retrieving markup for element

2009-10-14 Thread Robert Bell
Well, that piece of code seems to work fine, it just adds a bit of vertical height to the window depending on image size. The whole thing works fine that I can see IE8,IE6,FF2,FF3, but my my bosses IE7 failed on it. I am starting to wonder, if it not connected to me not destroying the

Re: CF8 = button = javascript/cfwindow = occasional = Error retrieving markup for element

2009-10-14 Thread Robert Bell
Ok, I got the AJAX Debugger to show me this, but it still makes no sense to me. I change the cfwindow to a static name: img_window, and started using coldfusion.navigate instead of coldfusion.window.unhide to show/unshow it, since I thought colfdusion.navigate would reload the cfcode, and

Re: CF8 = button = javascript/cfwindow = occasional = Error retrieving markup for element

2009-10-14 Thread Azadi Saryev
what's the code in your cfimage.cfm page? the error you get is very possible due to cfimage.cfm throwing an error... also, do you use site-wide or other error handler(s)? cferror tag in Application.cfm? onError() method in Application.cfc? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/

Re: CF8 = button = javascript/cfwindow = occasional = Error retrieving markup for element

2009-10-14 Thread Robert Bell
Problem SOLVED. Seems by using the full path to the url, some browsers were having problems, so I just used the cfimage.cfm relative path, and everything works on all browser permutations just dandy. Guess this was viewed as a cross-domain scripting attack somewhere down the

Re: CF8 = button = javascript/cfwindow = occasional = Error retrieving markup for element

2009-10-14 Thread Mark Atkinson
Thanks for sharing. It's these little idiosyncratic tidbits that make this job so interesting and frustrating all at once. -- Mark Atkinson AOCS Web | www.aocs.org 217-693-4839 Robert Bell wrote: Problem SOLVED. Seems by using the full path to the url, some browsers were having

Re: CF8 = button = javascript/cfwindow = occasional = Error retrieving markup for element

2009-10-14 Thread Robert Bell
Yup. In addition, I made the admin install the 8.01 update so I could implement a coldfusion.window.destroy tear down process, and hopefully not run into jvm memory problems. coldfusion.navigate did not really work, since it was not really updating the window content correctly. Now to