mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
Added missing DataTables option (fixes #2494)
This commit is contained in:
parent
9c123bd92a
commit
affa7c41a1
@ -61,6 +61,7 @@
|
|||||||
- Optimized that file uploads are not completely buffered in memory before writing them to disk (thanks @bbx0)
|
- Optimized that file uploads are not completely buffered in memory before writing them to disk (thanks @bbx0)
|
||||||
- Optimized top right corner menus icon spacing (thanks @TheDodger for the initial work on this)
|
- Optimized top right corner menus icon spacing (thanks @TheDodger for the initial work on this)
|
||||||
- Fixed again that some dialogs were not properly (too small) displayed (this time mostly affecting Chrome/Edge)
|
- Fixed again that some dialogs were not properly (too small) displayed (this time mostly affecting Chrome/Edge)
|
||||||
|
- Fixed that table states (visible columns, sorting, column order and so on) could be reset to default after not accessing/using the corresponding page for a certain amount of time
|
||||||
|
|
||||||
### API
|
### API
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ $.extend(true, $.fn.dataTable.defaults, {
|
|||||||
'scrollX': true,
|
'scrollX': true,
|
||||||
'colReorder': true,
|
'colReorder': true,
|
||||||
'stateSave': true,
|
'stateSave': true,
|
||||||
|
'stateDuration': 0,
|
||||||
'stateSaveParams': function(settings, data)
|
'stateSaveParams': function(settings, data)
|
||||||
{
|
{
|
||||||
data.search.search = "";
|
data.search.search = "";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user