Hi,
page : https://www.wyser.xyz/Profiles/allwysers
issue :
I have a dynamic page, with repeater.
I had to format some of the repeater’s elements, by adding ‘html’ attribute, styling from ltr to rtl.
On 1st page it looks fine.
When going to next page, those lines are ltr, although it’s a dynamic page with rtl code.
When going back, stay with the unformatted text.
Would like to understand how to take control on this text element, to make it rtl.
This is the code:
$w("#repeater1").forEachItem(($item, itemData, index) => {
$item("#help").html = '<span dir="rtl"><h6>' + itemData.canHelpWith + '</h6></span>';
$item("#learn").html = '<span dir="rtl"><h6>' + itemData.needHelp + '</h6></span>';
$item("#about").html = '<span dir="rtl"><h6>' + itemData.aboutMe + '</h6></span>'
});
This is
, & it’s rtl:
Thanks a lot:)
Dafna