1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-10 10:26:38 +02:00

Finalised grid layout doco

This commit is contained in:
Max Guglielmi 2016-09-05 19:39:57 +10:00
parent f394ef236a
commit 2bed4c656a
2 changed files with 25 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{
"name": "tablefilter",
"version": "0.2.63",
"version": "0.2.64",
"description": "A Javascript library making HTML tables filterable and a bit more",
"license": "MIT",
"author": {

View file

@ -149,6 +149,30 @@ export class GridLayout extends Feature {
*/
this.tblHasColTag = tag(tf.tbl, 'col').length > 0 ? true : false;
/**
* Main container element
* @private
*/
this.tblMainCont = null;
/**
* Table container element
* @private
*/
this.tblCont = null;
/**
* Headers' table container element
* @private
*/
this.headTblCont = null;
/**
* Headers' table element
* @private
*/
this.headTbl = null;
// filters flag at TF level
tf.fltGrid = this.enableFilters;
}