Community > Discussions
60 views
1 replies

Change Sortlink name

In live visualizer (table template)

Is it possible to change the name of the sort link but still sort? 

I would like to combine, first, last and middle initial to one field and call it Full Name but still sort by the last name.

Anthony Lightbourne Anthony Lightbourne
Published 11/07/2019 18:52
Add Comment
Manish Kumar

Not directly possible but possible using Inline Script of visualizer. Adding the below script in visualizer inline script textarea will help you to achive .

$(document).ready(function(){
  $('.lv-table>thead:first>tr>th:first>a').text('hello world');
});

replied 11/12/2019 04:42

Last Activity 11/12/2019 04:42