Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ include::example$onboarding/src/main/resources/com/company/onboarding/view/compo
<2> Optional `join` clause.
<3> Mandatory `where` clause. `?` indicates the parameter that is entered by the user.

[NOTE]
====
When `parameterClass` is an entity type, `jpqlFilter` passes the *identifier* of the selected entity as the query parameter, not the entity instance. Compare against the id of the association in the `where` clause, for example `{E}.customer.id = ?`. Comparing the association reference directly (`{E}.customer = ?`) does not match any records.
====

//todo: add example with hasInExpression="true" upon completing jmix ticket #1442

=== Programmatic Configuration
Expand Down