-
Notifications
You must be signed in to change notification settings - Fork 755
New issue
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
filter_formatter don't hide with filter hide #250
Comments
Hi cspeerly! Thanks for reporting this issue! I'll look into making the other form elements cooperate and hide better! And honestly, the css stuff is a personal thing that users can modify for themselves. I set it to what looks good to me with full knowledge that others will have different preferences and think what I set up as fugly. It's all good! Anyway, this time I think I will compromise with you and change it to |
Thank's so much, looking good |
Hiya! Here is an updated demo It looks like the spinner wasn't working because the header filter option was set to headers: {
5: {
sorter: true,
filter: true,
resizable: true
}
} The filter option should not be set when using the filter formatter because setting it to true was making the widget think that there was a select there instead of a spinner. The filter_formatter: {
6: function ($cell, indx) {
return $.tablesorter.filterFormatter.uiDatepicker($cell, indx, {
from: '13/1/1', // default from date
to: '14/12/31', // default to date
changeMonth: true,
changeYear: true,
dateFormat:'yy/mm/dd' // this is a jQuery DatePicker option
});
}
} Lastly, defining a I hope that fixes all of the issues that you were having :) |
Thank you very much,. Thanks, I will work it out on this end |
The filter_formatter functions don't hide using filter_hideFilters:true
The baxic Filters and select hide but not the formatter filters.
here is the jsfiddle example http://jsfiddle.net/cspeerly/zbg2r/
Also I had to change this in the formatter css file to enlarge the text on the slider flags
From 0.5em to 1em
I also added this so the range slider will resize if the column is resizable
The text was updated successfully, but these errors were encountered: