Re: Ajaxcfc newbe problems (2)

2007-01-03 Thread Christopher Jordan
Ioannis, Several folks on the ajaxCFC mailing list have commented on documentation like you suggest, but nobody (as far as I know; myself included) has stepped up to the plate to help Rob with documentation despite a desire to do so. I'm guessing that folks are just really busy. I agree that

Re: Ajaxcfc newbe problems (2)

2007-01-03 Thread Ioannis Papanikolaou
It works smoothly with alert(r); Any other way to try to display it ?( what I want to do is to display the results of the output form my server to a specific DIV on my first page. The page is kind of dynamic content displaying info). I am using the Beta version as you said. The errors I am

RE: Ajaxcfc newbe problems (2)

2007-01-03 Thread loathe
Replace document.write(r); With DWRUtil.setValue(myDivName,r); Does that work? -Original Message- From: Ioannis Papanikolaou [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 03, 2007 3:49 PM To: CF-Talk Subject: Re: Ajaxcfc newbe problems (2) It works smoothly with alert(r

Re: Ajaxcfc newbe problems (2)

2007-01-03 Thread Ioannis Papanikolaou
Yeees, it worked it worked it worked it worked it worked. Any suggested reading you have to reccomend on how to send and handle requestes with AjaxCFC would be more than welcome. As well the reason of why a simple document.write wouldnt work (in order to avoid similar

Re: Ajaxcfc newbe problems (2)

2007-01-03 Thread Robertson-Ravo, Neil (RX)
://www.reedexpo.com -Original Message- From: Ioannis Papanikolaou To: CF-Talk Sent: Wed Jan 03 21:45:48 2007 Subject: Re: Ajaxcfc newbe problems (2) Yeees, it worked it worked it worked it worked it worked. Any suggested reading you have to reccomend on how to send and handle

Re: Ajaxcfc newbe problems (2)

2007-01-03 Thread Christopher Jordan
Ioannis, I wouldn't spend a lot of time trying to figure out why document.write() isn't working for you. It's not what you want to use anyway. What you want to do is manipulate the DOM to update portions of the screen dynamically -- at least it seems that's what you want. You can do this with

Re: Ajaxcfc newbe problems (2)

2007-01-03 Thread Christopher Jordan
Robertson-Ravo, Neil (RX) wrote: I would also read up on the basic principle of ajax as well, it will ho a long way in helping you understand it all. yup... I love those ajax books... best ho's around. They'll ho until from sun up 'til sundown...:o) Cheers, Chris --

RE: Ajaxcfc newbe problems (2)

2007-01-03 Thread Dave Watts
As well the reason of why a simple document.write wouldnt work (in order to avoid similar mistakes in the future). When document.write() is called after the page has already been displayed to the user, it rewrites the entire page. Set the innerHTML or innerText properties of a block element