MooDialog
MooDialog copied to clipboard
Wrap content of dialog
hello,
why I cant wrap the text content of the dialog uing the
tab or \n code?
Howcan I do it?
Roberto
Could you give a small example of what you're trying to achieve?
Ok. I have de code: msg = 'textline1 textline2'; new MooDialog.Alert(msg);
the output of dialog is: textline1 textline2 and it's ok.
but I want the output: textline textline2
I'll try with
or
tag:
msg = 'textline1
textline2';
new MooDialog.Alert(msg);
but the output is:
textline1
textline2
same thing with \n or \n\r...
Regards, Roberto