Multi Line labels/texts [New-Line/Line-Feed help required]

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Multi Line labels/texts [New-Line/Line-Feed help required]

Jigyasa Grover
Hi
I have made an accordion widget for my application searchQuick (https://github.com/jig08/sQuick_new ), an offline text search application using Expander Morphs
I was trying to insert a multi-line content in it , but in vain. The new-line methods don't seem to have the desired effect.

I have tried the following ways:

1. dialog newExpander: (result title asString, Character cr asString  , result content asString ) 

2. dialog newExpander: (result title asString, '\' withCRs, result content asString)

3. dialog  newExpander: (result title asString, String crlf , result content asString ) 

[ result is the array item representing a document having the search string ]

Could anyone pls point out the error in my approach ?
It would be a great help.

Thank You
Jigyasa