@simon9978 Your problem will be that you do not use the RichtextEditor for text-input, before do the output right?
If you want to get some text out of your DB with some specific format, then you have also first to bring the text with the right format into your DB first.
How to do ?
-Place a Rich-Text-Field onto one new empty page.
-Add a button (button1).
-Add this CODE here…
$w.onReady(function() {
$w('#button1').onClick(()=>{
console.log($w('#richTextBox1').value)
})
});
Type something into the RichTextField in Preview-Mode.
Do some text-formating.
Press the button and take a look onto —> CONSOLE.
Now you should understand, why i mentioned the → VALUE ! ![]()
Output-format = input-Format!
Bruno’s suggestion also works → but in manual way.