Bullets in text called from a dataset

Hi everyone.
I have a dataset conected to my page. I have connected a text box to a text field of my dataset. This works perfectly.
It´s any form to put the text like a list with bullets? I mean that when in the text field i have a point, in my page looks like a bullets list.

Thanks for any help with this trouble :slight_smile:

So you want to replace every " . " and use “•” instead?

If that’s what you want, then:

$w.onReady(() => {
    $w("#dataset1").onReady(() => {
        $w("#text1").text = $w("#text1").text.replace(/\./g, "•");
    })
})

If you also want to break the line before each bullet then:

$w.onReady(() => {
    $w("#dataset1").onReady(() => {
        $w("#text1").text = $w("#text1").text.replace(/\./g, "\n•");
    })
})

@jonatandor35 thanks a lot!!! It´s works perfeclty!!! :slight_smile: :slight_smile: :slight_smile: