Open GoogleCodeExporter opened 8 years ago
As of the latest version, I'm still seeing this issue.
Original comment by gbirchme...@connamara.com
on 24 Aug 2012 at 2:23
Just use bUseColVis: true...
http://code.google.com/p/jquery-datatables-column-filter/source/browse/trunk/col
Vis.html?r=55
Original comment by koblinge...@gmail.com
on 10 Sep 2012 at 5:27
Seems like it might work.
Is that documented anywhere?
Original comment by gbirchme...@connamara.com
on 10 Sep 2012 at 5:53
Hey guys, if anyone reads this, it might save you a big time using this pluggin:
"bUseColVis does not work"
Check your dataTables.columnFilter.js code, and search for
_fnColumnIndex(iColumnIndex)
The fix is to inverse the if, to get it like that:
if (properties.bUseColVis)
return oTable.fnSettings().oApi._fnVisibleToColumnIndex(oTable.fnSettings(), iColumnIndex);
else
return iColumnIndex;
In the first case does care about visibility and count even skipped (invisible)
columns as it should.
Check it out :)
Original comment by birdsevo...@gmail.com
on 31 May 2013 at 2:11
I can confirm the above method by birdsevo got the desired results. Nice Find!
Simply change:
if (properties.bUseColVis)
return iColumnIndex;
else
return oTable.fnSettings().oApi._fnVisibleToColumnIndex(oTable.fnSettings(), iColumnIndex);
To:
if (properties.bUseColVis)
return oTable.fnSettings().oApi._fnVisibleToColumnIndex(oTable.fnSettings(), iColumnIndex);
else
return iColumnIndex;
Original comment by j...@5lime.com
on 26 Jul 2013 at 7:46
Worked for me too, big thanks!
Original comment by jlin...@dcidesigns.net
on 18 Aug 2013 at 3:01
Yes..This fix worked for me.
Original comment by gangadha...@gmail.com
on 25 Nov 2013 at 1:19
Thanks, "j...@5lime.com" your solution worked like a charm!
Original comment by renzos...@gmail.com
on 30 Jan 2014 at 7:23
[deleted comment]
Thanks man "j...@5lime.com", your solution is really working.
Original comment by ztdn3...@gmail.com
on 9 Jun 2014 at 7:24
Thanks so much for that #4 birdsevo...@gmail.com !!!
Original comment by julien.h...@gmail.com
on 7 Aug 2014 at 1:30
Original issue reported on code.google.com by
gbirchme...@connamara.com
on 24 Aug 2012 at 2:20