
Pin...
01/19 - 01/23
Click here to add your own content, or connect to data from your collections.
From:
$550

Tex...
01/19 - 01/23
Click here to add your own content, or connect to data from your collections.
From:
$550

Mul...
01/19 - 01/23
Click here to add your own content, or connect to data from your collections.
From:
$550

Tim...
01/19 - 01/23
Click here to add your own content, or connect to data from your collections.
From:
$550

Whe...
01/19 - 01/23
Click here to add your own content, or connect to data from your collections.
From:
$550

Tim...
01/19 - 01/23
Click here to add your own content, or connect to data from your collections.
From:
$550
CODE:
$w.onReady(() => {
const maxCharacters = 3;
$w("#dataset1").onReady(() => {
$w("#repeater1").onItemReady(($i, iData) => {
let textToDisplay = iData.title.substring(0, maxCharacters);
if(textToDisplay !== iData.title){
textToDisplay += "...";
}
$i("#text47").text = textToDisplay;
})
})
})