[cfaussie] [ANN SYD] Next Monday: Launching a Start-up and Going International

2012-04-22 Thread Chris Velevitch
Monday 30th April, 6pm for 6:30 start Melanie and Cliff will discuss how they took their idea and turned it into an international, profitable company. Iterations of their system have taken them around the world and back, starting in PHP/HTML/AJAX in Australia, outsourcing to a Flex company in

[cfaussie] textareas the returns

2012-04-22 Thread Brian Knott
Just a quick one guys. If I put a return in a text area, now can I force the text to show those returns when I display the field on a HTML page. If I edit the vaue in a text area again the returns are there but if I just display the value, the returns are ignored. thanks Brian -- You

RE: [cfaussie] textareas the returns

2012-04-22 Thread Steve Onnis
Depends You can use pre or you can use #ParagraphFormat([textareaValue])# which will take each return and split the value into paragraphs using the p tag Steve From: Brian Knott [mailto:bkn...@jbk.com.au] Sent: Monday, 23 April 2012 12:20 PM To: cfaussie Subject: [cfaussie] textareas

RE: [cfaussie] textareas the returns

2012-04-22 Thread Brian Knott
Had a look at Paragraph forma but it replace single returns with spaces and double returns with p. Not sure why it replaces with spaces, but that what the documentaion says. Brian From: Steve Onnis st...@cfcentral.com.au Sent: Monday, 23 April 2012

[cfaussie] [ANN SYD] Next Monday: Launching a Start-up and Going International (correction)

2012-04-22 Thread Chris Velevitch
Monday 30th April, 6pm for 6:30 start Melanie and Cliff will discuss how they took their idea and turned it into an international, profitable company. Iterations of their system have taken them around the world and back, starting in PHP/HTML/AJAX in Australia, outsourcing to a Flex company in

RE: [cfaussie] textareas the returns

2012-04-22 Thread Brian Knott
Got is solved. Use pre and set the display style to inline i.e. pre style=display:inline#form.field#/pre thanks for the help Brian From: Steve Onnis st...@cfcentral.com.au Sent: Monday, 23 April 2012 12:23 PM To: cfaussie@googlegroups.com Subject: RE:

Re: [cfaussie] textareas the returns

2012-04-22 Thread Barry Beattie
Steve: is there any situations where pre/pre wouldn't work/be a good idea? That used to be my preference. On Mon, Apr 23, 2012 at 12:42 PM, Brian Knott bkn...@jbk.com.au wrote: Had a look at Paragraph forma but it replace single returns with spaces and double returns with p. Not sure why it

RE: [cfaussie] textareas the returns

2012-04-22 Thread Steve Onnis
Also depends on the browser and operating system as some use \r and others use \n for the new line characters. The thing with using pre is that you don't have any control over the spacing as you would with your p tags. If it is just output you want, then yeah sure, pre will output it with