1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-12 11:27:24 +02:00

Fixed popup filters in gridLayout mode

This commit is contained in:
Max Guglielmi 2015-04-11 19:17:28 +10:00
parent dadf94666d
commit 0acc5f5d29
4 changed files with 4 additions and 4 deletions

2
dist/filtergrid.css vendored
View file

@ -1,6 +1,6 @@
/*------------------------------------------------------------------------
- TableFilter stylesheet by Max Guglielmi
- (build date: Sat Apr 11 2015 19:04:42)
- (build date: Sat Apr 11 2015 19:12:40)
- Edit below for your projects' needs
------------------------------------------------------------------------*/

View file

@ -3517,7 +3517,7 @@ export default class TableFilter{
index
=====================================================*/
getHeaderElement(colIndex){
var table = this.gridLayout ? this.headTbl : this.tbl;
var table = this.gridLayout ? this.Cpt.gridLayout.headTbl : this.tbl;
var tHead = dom.tag(table, 'thead');
var headersRow = this.headersRow;
var header;

View file

@ -113,7 +113,7 @@
// remember_page_length: true,
fill_slc_on_demand: false,
linked_filters: false,
popup_filters: false,
popup_filters: true,
alternate_rows: true,
highlight_keywords: true,
match_case: false,

View file

@ -3499,7 +3499,7 @@ define(["exports", "module", "event", "dom", "string", "cookie", "types", "array
=====================================================*/
value: function getHeaderElement(colIndex) {
var table = this.gridLayout ? this.headTbl : this.tbl;
var table = this.gridLayout ? this.Cpt.gridLayout.headTbl : this.tbl;
var tHead = dom.tag(table, "thead");
var headersRow = this.headersRow;
var header;