I want to put a text that puts half text in normal format and that follows the text that takes it from the database
example:
Inicio / + (text from database)
inicio / Ministerios
This is the code I use
$w.onReady( function () {
$w(“#ministeriosDataset”).onReady( () => {
let currentItem = $w(“#ministeriosDataset”).getCurrentItem();
$w(“#text11006”).text = 'Inicio / ’ + ‘title’
} );
} );
how can i do?
Thanks