Expand my Community achievements bar.

Guidelines for the Responsible Use of Generative AI in the Experience Cloud Community.
SOLVED

Replace whitespace from property value

Avatar

Level 5

Hi ,

I have ${properties.Title} value and I am using this value as Id to open accordion in my page.If I have Title without any space , its working fine but if I have space in Title then ID will not work because Id not taking value with space.Is there any way to remove space from Title and use as Id in silghtly.

<li class="column">
                            <a href="#" data-id="${properties.Title}">
                                <span class="widthCtrl"><img alt="Drive Up" src="${properties.serviceImage}"></span>
                                <h5>${properties.Title}</h5>
                            </a>
                            <div class="serviceDescription" id="${nav.serviceTitle}">

                                <div class="container">..</div>

......................................................

</li>

1 Accepted Solution

Avatar

Correct answer by
Level 5

Best option would be to trim the value of the field in the sling model class.

View solution in original post

1 Reply

Avatar

Correct answer by
Level 5

Best option would be to trim the value of the field in the sling model class.