/*------------------------------------------------------------------------ - HTML Table Filter Generator - Additional handy public methods for developers v1.3 - By Max Guglielmi (tablefilter.free.fr) - Licensed under the MIT License -------------------------------------------------------------------------*/ TF.prototype.HasGrid = function() /*==================================================== - checks if table has a filter grid - returns a boolean =====================================================*/ { return this.hasGrid; } TF.prototype.GetFiltersId = function() /*==================================================== - returns an array containing filters ids - Note that hidden filters are also returned =====================================================*/ { if( !this.hasGrid ) return; return this.fltIds; } TF.prototype.GetValidRowsIndex = function(reCalc) /*==================================================== - returns an array containing valid rows indexes (valid rows upon filtering) =====================================================*/ { if( !this.hasGrid ) return; if(!reCalc){ return this.validRowsIndex; } this.validRowsIndex = []; for(var k=this.refRow; k