Hi, I am hopping you can help me with my table, because I have few tasks that I cannot make to work.
I have few column headers where I added fontawesome icons instead of regular text and also tooltip that you will see when hover on this icons.
Please look at this example of my code:
https://jsfiddle.net/alexdarui/ws8zx0ay/20/
First task is to make sorting work when user clicks on header icon (right now it works only if I click on the right side from icon).
I found a solution to add this CSS, but if there is more straight way please let me know:
.handsontable span.colHeader.columnSorting::before {
content: ‘’;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
margin-top: 1px;
margin-left: 2px;
}
Second task is to add icons to header tooltip. I added plain text in there for now, but I will need svg or fontawesome icons right next to that text.
Third task is to set my columns width to auto, but only third column I need to set to 200 because it will have a lot of text and I want to make sure it won’t take too much space. I cannot set max width, because it also has to work with manualColumnResize.
Please let me know if there is any way to implement this. Thank you.