diff --git a/docs/index.html b/docs/index.html index 86d6e208..33727d17 100644 --- a/docs/index.html +++ b/docs/index.html @@ -592,7 +592,7 @@
colspan
cells in the tbody may have its content duplicated in the cache for each spanned column (v2.25.0; v2.25.8).
If true
, the cache will contain duplicated cell contents for every column the colspan
includes. This makes it easier to sort & filter columns because a cell spanning all columns will only work with one parser.
In v2.25.8, the contents of cells that are spanned will be set to an empty string only if the textExtraction
setting is left as a string. If a function is added, it will be used to attempt to extract other content from the spanned cell (see Stackoverflow for an example).
In v2.25.8, the contents of cells that are spanned will be set to an empty string only if the textExtraction
setting is left as a string. If a function is added, it will be used to attempt to extract other content from the spanned cell (see demo for an example).
// this row: <tr><td colspan="3">foo</td><td>bar</td></tr> results in this row cache: [ 'foo', 'foo', 'foo', 'bar' ] // if duplicateSpan = true [ 'foo', '', '', 'bar' ] // if duplicateSpan = false (no textExtraction function)