You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the help of that effect, the table will now show either 2 columns on a mobile phone, 3 columns on a tablet device and all columns on Desktop devices.
* The number of rows visible without going into overflow.
93
+
* The number of rows visible without going into overflow.<br />
94
94
* __Note:__ If the data contains more entries than the `visibleRow` count, a vertical scrollbar is rendered and the table goes into overflow.
95
95
*/
96
96
visibleRows?: number;
97
97
/**
98
-
* Indicates whether a loading indicator should be shown.
98
+
* Indicates whether a loading indicator should be shown.<br />
99
99
* __Note:__ If the data array is not empty and loading is set to `true` a `Loader` will be displayed underneath the header, otherwise a loading placeholder will be shown.
100
100
* You can use your own placeholder by passing it to the `LoadingComponent` prop.
* Defines the infinite scroll threshold. When the threshold is reached, the `onLoadMore` event is fired.
178
+
* The `infiniteScrollThreshold` defines at how many remaining rows the `onLoadMore` event should be fired.<br />
179
+
* Example: Your initial dataset consists of 50 entries and you want to load more data when the user scrolled to the 40th row. Then you should set the `infiniteScrollThreshold` to 10.
* By default, the `AnalyticalTable` will not select any rows after clicking on active elements like a `Button`, `Link`,
253
-
* etc. <br />
254
-
* In case you want to select the row anyways, you can "mark" the event to allow such a behaviour. <br />
255
-
* Example: `<Link onClick={(e) => {e.markerAllowTableRowSelection = true;}>My Link Text</Link>`
251
+
* The `AnalyticalTable` provides a set of convenient functions for responsive table design, including virtualization of rows and columns, infinite scrolling and customizable columns that will, unless otherwise defined, distribute the available space equally among themselves.
252
+
* It also provides several possibilities for working with the data, including sorting, filtering, grouping and aggregation.
0 commit comments