1,879 questions
0
votes
2
answers
54
views
jQuery Tablesorter plugin: How to define the value that the filter is tested against
I have a tablesorter table with a column where each td contains a lot of html. I don't want the filter term to be tested against all of the contents of the td, i just want it to be tested against a ...
-1
votes
1
answer
61
views
Tell tablesorter plugin to not use 'and' and 'or' as logical operators in filtering
Tablesorter's column filtering is behaving erratically because it is treating 'and' and 'or' as logical operators rather than just plain text. I've been reading the docs here and can't see how to ...
0
votes
1
answer
49
views
How to sort based on images in cell rows
I have a table that has a column that is either clicked or not. if clicked == 1, I want to show a font-awesome checkmark in the table cell, otherwise its blank. That all works fine. What is not ...
0
votes
1
answer
103
views
How to sort balance in table ascending and descending?
I was try sort the balance in table an ascending and an descending, but can't. I looked the w3schools tutorial and theme in stackoverflow about insertBefore and insertAfter without libraries. But isn'...
1
vote
2
answers
153
views
In a html table using tablesorter, how can a row have a background color depending on the contents of one of its cells?
I am showing a HTML table using the jQuery Mottie tablesorter. I would like the rows with a "v" in one of its columns to be formatted with a certain (given) background color, which is ...
0
votes
1
answer
77
views
jquery tablesorter scroller not setting height
I am using latest version of laravel. I am trying to use a table with tablesorter that is only 300px tall. no matter what I do, the scroller seems to be being ignored. The result is a table that ...
0
votes
1
answer
40
views
External tablesorter filter: load two datasets
I have two seperate Questions for the mottie tablesorter script:
I have created external buttons to filter the table beforehand. When you click, the data in question is loaded.
However, each time you ...
0
votes
1
answer
111
views
Mottie Tablesorter Custom Filter on Date Column
I am looking to remove the day of the week when sorting a column using Mottie Tablesorter v2.31.
The value of the cells are as follows: Friday, 9/15/2023 at 7:00AM.
Here is what I have so far based on ...
0
votes
1
answer
57
views
Disable ascending sort with jQuery tablesorter 2.3
Is it possible to disable ascending sort on the jQuery plugin tablesorter?
I’m trying to get a table header when clicked to either be sorted in descending order or be unsorted and skip the ascending ...
0
votes
1
answer
91
views
Tablesorter — How can I sort a column by first or last name (both ascending) rather than toggling between ascending and decending?
I want to use tablesorter to sort a column (column contains first name + last name) so that clicking the header toggles between sorting by first name and sorting by last name, both in ascending order.
...
0
votes
0
answers
54
views
How to sort multiple colums in several files in a folder in Excel (xlsx files) and save in a single file?
I am a noob in excel, i have multiple excel xlsx files with similar columns.
I am looking for a way to pick specified columns (applied same to all the files) and save them in a new file.
I will ...
0
votes
0
answers
65
views
Tablesorter Filter column A by content of column B
I have a tablesorter with some data.
I'm using Twig templates from Symfony Framework.
I'll make a basic example:
<table id="tablesorter" class="hideAtFirst tablesorter hover-...
1
vote
1
answer
38
views
TableSorterJS Reapply Default Filter Selections
I set the default value of a filter as indicated below
<th>Status</th>
<th data-value="N">Complete</th>
<th>Audit Date</...
1
vote
1
answer
119
views
Is there a way to tell jQuery tablesorter that the table is already sorted?
I've a web app that builds a table from data it receives from an API. These data are a CSV string, which has its rows already sorted by the API using a couple of columns.
Currently, I use the sortList ...
0
votes
1
answer
68
views
Need SQL assistance, Column A and B are distinct, but column c has multiple values. Need to add column D for second distinct value when present
I need help isolating multiple entries in order.
Column A
Column B
Column C
100a
1000
ABC
100a
1000
DEF
200b
2000
GHI
300c
3000
JKL
300c
3000
MNO
There are duplicates in Column A (which has a 1:1 ...