Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Abel-HenryLapassat committed Jan 20, 2025
2 parents ef2a733 + a96d7ea commit ef69b49
Show file tree
Hide file tree
Showing 14 changed files with 52 additions and 6 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ simple quotes to enclose all textual values (not required for number values)
- `like`: partial equals
- `is null`: empty value
- `is not null`: any non empty value
- `in (...)`: exists in a list of values
- `not in (...)`: not exists in a list of values
- `in ('a','b','c')`: exists in a list of values
- `not in ('a','b','c')`: not exists in a list of values
- `not in`: does not exists in the ENUM field definition (since 6.2)


Comparators can be combined with logical operators:
Expand All @@ -62,6 +63,11 @@ Date or datetime interval search syntax is `YYYY-MM-DD[ hh:mm:ss];YYYY-MM-DD[ hh

Alternatively you can use search filters named `dmin__<field name>` or `dmax__<field name>`

### Interval searches on number fields

Number interval search syntax is `(>12 and <=25) or >100`.
For simple interval (min/max) you can use search filters named `nmin__<field name>` or `nmax__<field name>`

### Geographical search

As of version 5.3, geographical **coordinates fields** allows proximity search using syntax:
Expand Down Expand Up @@ -92,8 +98,21 @@ JSON Filters are used in several contexts: API endpoint, link filters, widgets,

```json
{
// expression
"field1" : ">=1000 and <=5000",
// ordered field
"order__field2" : -1,
"group__childField3" : 1
// date range
"dmin___date1" : "2021-01-01",
"dmax___date2" : "2023-12-31 15:35:00",
// number range
"nmin___number1" : 123,
"nmax___number2" : 456.78,
// use a predefined group-by fields
"group__childField3" : 1,
// or force another group-by on fields (since 6.2)
"groupby": true, "groupbyfields": ['myEnumField'],
// meta-object
"mofield": "User#%martin%"
}
```
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,14 @@ Post-release <span id="postrelease"></span>
- Fixed `initAction` object data in a row context of list
### 5.3.61 (UNRELEASED) - maintenance revision <span id="version-5.3.61"></span>
### 5.3.61 (2025-01-16) - maintenance revision <span id="version-5.3.61"></span>
- Backported fix associate loading within dialog on save
- Backported fix populate service in a creation context
- Backported fix `change` bindings to apply some front constraints in a workflow
- Backported fix initConfirmAction rowId of record on a panel instance
- Backported fix apply field constraints with old status during save
### 5.3.62 (UNRELEASED) - maintenance revision <span id="version-5.3.62"></span>
- Nothing so far...
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,15 @@ ex: home_ajax_DemoOrder_DemoHome_2
- Fixed `initAction` object data in a row context of list
- Fixed `ServletTool.getPermaLinkFromRequest` to preserve possible permalink parameters

### 6.1.20 (UNRELEASED) <span id="version-6.1.20"></span>
### 6.1.20 (2025-01-16) <span id="version-6.1.20"></span>

- Preserve URL parameters in `PermaLinks.deeplink` when user is not connected first
- Fixed associate loading within dialog on save
- Fixed populate service in a creation context
- Fixed `change` bindings to apply some front constraints in a workflow
- Fixed initConfirmAction rowId of record on a panel instance
- Fixed apply field constraints with old status during save

### 6.1.21 (UNRELEASED) <span id="version-6.1.21"></span>

- Nothing so far...
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 12 additions & 1 deletion content/CTG_99_versions/CTG_10_release-notes/LSN_80_v6-2/v6-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ $("#myWidget").addClass("js-view-filters").on("ui.view.filters", (e,filters) =>
- Improved UX for editing resources and print templates (and deprecated print templates using UI templates)
- Added `SAVE_BEFORE_QUIT` dialog on process activity with several choices:
- Added `SAVE_BEFORE_QUIT_PROCESS` dialog on process activity with several choices:
- `Save` the current form/activity
- `Quit` the activity but keep the process in memory
- `Abandon` the process
Expand All @@ -273,3 +273,14 @@ $("#myWidget").addClass("js-view-filters").on("ui.view.filters", (e,filters) =>
![](wkfquit.png)
- Color picker has been upgraded to `spectrum-colorpicker2` v2.0.10
- New style helper on `Action` form:
- to preview a generated button with selected colors
- to check the level AAA of WCAG contrast (minimum 4.5)
![](actcontrast.png)
![](actcontrast2.png)
- New style helper on `List code` form:
![](lovcontrast.png)

0 comments on commit ef69b49

Please sign in to comment.