Hi LM ,
We can add one more column to the table for sorting.
It can have different content:
- you can concatenate the fields you need to sort into one.
- you can use the "Ordering" function.
![]()
- create your own field for sorting.
After that, you will need to sort the table by this field.
We can add a script to hide that cutom column.
And in order to prevent the user from accidentally sorting by other fields, we will hide sorting from headers.
let colIndex = 0;
widget.on("render", function(se,ev){
se.style.tableState.columns[colIndex].visible = false;
})
widget.on('domready',function(){
$('.tw-sort-head ', element).css('display', 'none');
})
I hope this helps or points you in the right direction.
Always here to help,
Angelina from QBeeQ
[email protected]