jquery.dgtable 0.5.49 → 0.5.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -92,7 +92,7 @@ To create a new table, just use `var myTable = new DGTable(INIT_OPTIONS)`.
92
92
  * **rowsBufferSize**: `Number=10` The size of the rows buffer, for virtual table
93
93
  * **minColumnWidth**: `Number=35` In pixels, the minimum width for a column
94
94
  * **resizeAreaWidth**: `Number=8` The size of the area where you can drag to resize.
95
- * **onComparatorRequired**: `Function(String columnName, Boolean descending):{Function(a,b):boolean}` A callback that can pass a comparator function for each column and mode as required.
95
+ * **onComparatorRequired**: `function(columnName: string, descending: boolean, defaultComparator: function(a,b):number):{function(a,b):number}` A callback that can pass a comparator function for each column and mode as required.
96
96
  * **resizerClassName**: `String='dgtable-resize'` Class name for the dragged resizing element (showing when resizing a column)
97
97
  * **tableClassName**: `String='dgtable'` Class name for the table
98
98
  * **allowCellPreview**: `Boolean=true` When set, hovering on truncated cells will show a preview of the full content.