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
* Update JavaScript core logic for modularity, optimize DOM interactions, ensure better parameter validation, and streamline loader/spinner handling. Update examples to reference latest script and stylesheet internally.
* Add AvalynxTable integration for responsive table features, enhance DOM updates, expand Jest coverage, and bump version to 1.0.2
* Add badges to README, extend examples and language options, increase test coverage to 100%, configure CI with GitHub Actions, and bump version to 1.0.2
AvalynxDataTable is a simple, lightweight, and customizable data table component for web applications. It is designed to be used with Bootstrap version 5.3 or higher and does not require any framework dependencies.
4
12
5
13
## Features
@@ -19,6 +27,7 @@ Here's a simple example of how to use AvalynxDataTable in your project:
-`showingEntries`: `(start, end, total) => 'Showing ${start} to ${end} of ${total} entries'`
162
+
-`showingFilteredEntries`: `(start, end, filtered, total) => 'Showing ${start} to ${end} of ${filtered} entries (filtered from ${total} total entries)'`
163
+
164
+
For German, you can use:
165
+
166
+
-`showLabel`: `'Zeige'`
167
+
-`entriesLabel`: `'Einträge'`
168
+
-`searchLabel`: `'Suche'`
169
+
-`previousLabel`: `'Zurück'`
170
+
-`nextLabel`: `'Weiter'`
171
+
-`showingEntries`: `(start, end, total) => 'Zeige ${start} bis ${end} von ${total} Einträgen'`
172
+
-`showingFilteredEntries`: `(start, end, filtered, total) => 'Zeige ${start} bis ${end} von ${filtered} Einträgen (gefiltert von ${total} Einträgen)'`
173
+
143
174
## JSON Data Structure
144
175
145
176
AvalynxDataTable expects data in a specific JSON format to render the table correctly. The JSON object should contain the following fields:
0 commit comments