Skip to content

Releases: an23lm/Table-Moderno

v1.6.14

05 Dec 06:55
Compare
Choose a tag to compare
  • fix no data bugs

v1.6.13

13 Nov 07:25
Compare
Choose a tag to compare
  • fix append data

v1.6.10

11 Nov 07:17
Compare
Choose a tag to compare

-fix no data available template

v1.6.6

05 Nov 08:07
Compare
Choose a tag to compare

faster append data

v1.6.5

04 Nov 10:43
Compare
Choose a tag to compare

fix for tooltip

v1.6.4

04 Nov 09:53
Compare
Choose a tag to compare

Added no data card

v.1.6.3

02 Nov 13:00
Compare
Choose a tag to compare

bug fixes in appenddata

v1.6.2

31 Oct 09:58
Compare
Choose a tag to compare

Added appendData to append new data to the bottom

v1.6.1

31 Oct 09:09
Compare
Choose a tag to compare

Added columnFit to config.
Options - auto and fixed.
Default - auto.
To use fixed use widthByColumn config along with it.

v1.5.0

23 Jul 11:00
Compare
Choose a tag to compare

The new big feature in v1.5.0 is drum roll please lazy loading!

  • Two new config keys added -
    • lazyLoad (Boolean) [ default: false ] - Enable or disable lazy loading.
    • lazyLoadTrigger (Number) [ default: 75 ] - The percentage at which the callback is triggered to add new data.
  • registerLazyLoadTriggerCallback(callback) callback: function - The callback function is invoked when the lazyLoadTrigger threshold is reached. The callback function is invoked with one parameter - callback(this.scrollDoneLoad.bind(this)), which is also a callback. This parameter function should be invoked when the new data is done loading and is inserted into the table. Optionally, scrollDoneLoad can be directly called on the table object.
  • scrollDoneLoad - Function is used to indicate that a new set of data from a lazy load is inserted. It is crucial to call this function after lazy loading is done for the operation of lazy load trigger callback.