Skip to main content
Nintex Community Menu Bar

Hi, I created a ListView and I added a <br> in the column header so I can have the header in 2 rows.

Attached the info.

It's perfect in the table but now in the search field I can see the <br> that I don't want.

How can I have the header column in 2 rows without using <br>? or How can I remove the <br> from the search?

 

You can write custom script to replace "<br>" to ""


 


<script>$("li > a > span").text(function () { return $(this).text().replace("<br>", "").replace("<br>", ""); });</script>


Great, it's working. Thanks


Reply