Stephen Abello
3ae8575c1d
N°3914 Fix portal tables getting backoffice markup for enum attributes
2021-05-28 11:00:40 +02:00
Stephen Abello
cc4b307bc9
N°3914 Fix class friendlyname in lists using class aliases
2021-05-28 10:48:57 +02:00
Stephen Abello
6d004f83dd
N°3914 Correctly remove entries from linksets' datatable
2021-05-28 10:21:41 +02:00
Stephen Abello
8f68ca3f67
N°3914 Display label on "Add criterion" button when there's no criterion. Add tooltips to "Add criterion" and "Refresh" button
2021-05-27 17:12:14 +02:00
Eric
84741c19f0
N°4002 - code hardening (merge from support/2.6)
2021-05-27 16:36:00 +02:00
Eric
96126d235f
N°2214 Add PHP check in CLI scripts (fix some checks and title)
2021-05-27 16:31:15 +02:00
Stephen Abello
4de40e289f
N°3914 Add row highlight colors to Datatables block when an object has a triggered tto/ttr
2021-05-27 16:14:29 +02:00
Eric
86f649affc
N°4002 - code hardening
2021-05-27 16:13:27 +02:00
Eric
4f5c987d8b
N°4002 - code hardening
2021-05-27 15:57:04 +02:00
Stephen Abello
9ccd26a541
N°3914 Harmonize linkset display
2021-05-27 12:15:58 +02:00
Eric
e7b5953feb
documentation
2021-05-27 11:52:38 +02:00
Eric
e441e5e78a
documentation
2021-05-27 11:49:32 +02:00
Stephen Abello
6d57945bd1
N°3914 Hide lists pagination when there's only 1 page
2021-05-27 11:20:48 +02:00
Stephen Abello
0cb0f52b12
N°3914 Fix lists header and data being misaligned when resizing them
2021-05-27 09:59:31 +02:00
Eric
6be9a87c15
N°3952 - code hardening (merged from support/2.6)
2021-05-27 09:55:16 +02:00
Eric
43daa2ef08
N°3952 - code hardening
2021-05-27 09:29:50 +02:00
Molkobain
8f9a69fa60
SCSS: Fix field badge display being in 2 lines
2021-05-26 22:00:55 +02:00
Molkobain
1d94e12da8
Update precompiled themes
2021-05-26 16:57:31 +02:00
Molkobain
0a04fe5917
SCSS: Add fallback fonts to minimize visual glitch while Raleway is not loaded
2021-05-26 16:55:10 +02:00
Molkobain
b03389068e
SCSS: Fix large field not taking whole width
2021-05-26 16:55:10 +02:00
Stephen Abello
c9171ef30e
N°3923 Cleanup css files
2021-05-26 15:55:57 +02:00
Stephen Abello
3853d38d69
N°3923 Fix up, down, enter key usage in ext key widget
2021-05-26 15:43:32 +02:00
Pierre Goiffon
caa2a05bf4
🔧 restore .editorconfig
...
Was moved to /test by mistake
And also editorconfig syntax was removed :(
Those mistakes were done in 7f15eed9
Thanks Molkobain, good catch !
2021-05-26 15:19:40 +02:00
Pierre Goiffon
fc39d8aca9
💡 PHPDoc type hinting
2021-05-26 14:24:29 +02:00
Stephen Abello
022887258f
N°3923 Hide caret in autocomplete ext key input
2021-05-26 14:11:13 +02:00
Eric
cf12578289
N°3452 - DB tools : better formatting
2021-05-26 12:14:14 +02:00
Stephen Abello
3105a7ef77
N°3923 Vertical align ext key action buttons
2021-05-26 11:20:43 +02:00
Molkobain
f5ee19370c
Update precompiled themes
2021-05-26 10:43:49 +02:00
Molkobain
923134d67d
Code cleanup
...
- "v-resizable" class is not used anymore in the UI
- Logoff menu is now handled in a dedicated block
- Caselog headers are now handled in a dedicated block
2021-05-26 10:37:03 +02:00
Molkobain
3c2c2d7a51
Code cleanup: Remove unused methods from early implementation
2021-05-26 10:37:02 +02:00
Molkobain
3ee4a14c56
N°4021 - Introduce sticky header for panels and object details (tab container to be done)
2021-05-26 10:37:02 +02:00
Molkobain
dd284a6c1d
SCSS: Fix base content layout not behaving the same way as the one with side content
2021-05-26 10:37:02 +02:00
Molkobain
c240a8991d
SCSS: Fix import ordering of the custom root folders
2021-05-26 10:37:02 +02:00
Molkobain
0948c46dc7
SCSS: Add more variables for jQuery UI
2021-05-26 10:37:02 +02:00
Molkobain
d9755fe59d
Code format
2021-05-26 10:37:02 +02:00
Stephen Abello
7f82e9262b
N°3923 Fix date picker widget not initialized in ajax forms
2021-05-26 10:21:30 +02:00
Pierre Goiffon
44952d1ea0
✅ Fix \UtilsTest::testIsMemoryLimit
2021-05-25 17:04:32 +02:00
Pierre Goiffon
7f15eed9a8
🔧 Update .editorconfig
...
* Preserve XML line breaks
* Add markdown
* Add editorconfig
2021-05-25 15:50:23 +02:00
Stephen Abello
14930fbab2
N°3914 Fix configure this list "sort fields" feature
2021-05-25 15:38:52 +02:00
Stephen Abello
2cbca93d77
N°3914 Fix modal backdrop on lists' "configure this list" modal
2021-05-25 14:54:54 +02:00
BGdu38
c2f5cafaf3
Avoid setting memory_limit to lower value than the one already configured ( #215 )
...
Some scripts are setting the memory_limit PHP option : setup, csvimport and XLSX export. This was done to avoid crashing when dealing with such large amount of data.
But sometimes we were setting the value without any prior check, so we could actually lower the memory_limit value :/
Now this memory_limit change is done using \utils::SetMinMemoryLimit, which will call ini_set if and only if the current value is lower than the one to be set.
Setup calls (setup/ajax.dataloader.php and webservices/backoffice.dataloader.php) were left as is as they weren't subject to this bug, and also they are more complex (logging done on each case).
2021-05-25 12:03:19 +02:00
Pierre Goiffon
81822efa0f
💡 PHPDoc for \DBObject::ApplyStimulus
2021-05-25 10:52:12 +02:00
Molkobain
104cf9479c
List: Remove vertical scrolling for all lists except dashlets
2021-05-21 17:06:12 +02:00
Molkobain
a36632def6
Fix modal title displaying behind closing "X" on long titles
2021-05-21 17:06:12 +02:00
Molkobain
6a1b1d7740
Code format
2021-05-21 17:06:11 +02:00
Molkobain
f544d53c36
List: Fix height / scroll for linkedsets add items modal
2021-05-21 17:06:10 +02:00
Pierre Goiffon
3188204d05
📝 CONTRIBUTING : add "allow edits from maintainers" PR option
2021-05-21 11:28:48 +02:00
Molkobain
a7294d48a6
Update precompiled themes
2021-05-20 19:08:46 +02:00
Molkobain
42be0c20cb
Field: Rework on the SCSS file
...
- Fix button being too large on AttributeImage
- Reorganize the classes a bit
2021-05-20 18:18:29 +02:00
Molkobain
1c6ffab0e3
Remove index variable from foreach as it was misleading ($sClass does not contain classes but a numeric index)
2021-05-20 18:18:29 +02:00