We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
I would like to retrieve the value from an input (inside the cell) and use the value in math widget.
To filter this column we use .group-input, to return it's value:
.group-input
textExtraction: { '.group-input': function(o) { return $(o).find("input").val(); } },
The value returned from a custom equation
$.tablesorter.equations['weight_input'] = function(arry) { console.log(ary)} is [0,0,0] when there are 3 cells at the target column;
$.tablesorter.equations['weight_input'] = function(arry) { console.log(ary)}
[0,0,0]
Thank you
The text was updated successfully, but these errors were encountered:
Hi @doArcanjo!
Yes, it looks like I haven't updated the internal math code to use the textExtraction function. I'll get that fixed in the master branch momentarily.
textExtraction
Please let me know if this solves the issue for you.
Sorry, something went wrong.
Math: use core textExtraction on cells. See #1098
7f027e8
Yes it does! Thank you.
When do you preview a new release bower/npm version?
I'm thinking this weekend
@Mottie Excellent!
No branches or pull requests
Hi!
I would like to retrieve the value from an input (inside the cell) and use the value in math widget.
To filter this column we use
.group-input
, to return it's value:The value returned from a custom equation
$.tablesorter.equations['weight_input'] = function(arry) { console.log(ary)}
is
[0,0,0]
when there are 3 cells at the target column;Thank you
The text was updated successfully, but these errors were encountered: