cfdiv display problem

2008-05-06 Thread Victor Moore
Hi, I'm using cfdiv to dynamically load information on a page based on a user selection. Everything works well except that information displayed (which is text in the db and contains line feeds) doesn't preserve the carriage returns and all the information is being displayed as one long string.

Re: cfdiv display problem

2008-05-06 Thread Azadi Saryev
use replace() cf function to replace all instances of chr(10)chr(13) with br in the returned text that goes into your cfdiv Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Victor Moore wrote: Hi, I'm using cfdiv to dynamically load information on a page based on a user selection.

Re: cfdiv display problem

2008-05-06 Thread Victor Moore
Never mind. I found out that I can format the output in the cfc and send it formatted to the cfdiv tag and it works. Thanks Victor On Tue, May 6, 2008 at 10:41 AM, Azadi Saryev [EMAIL PROTECTED] wrote: use replace() cf function to replace all instances of chr(10)chr(13) with br in the