ShowQueryValues
Views (307)
The showQueryValues() method indicates if the query should be active in the
dialog. If the user must access the query in the dialog, override this method and
return true.
This method should now include the information stored in the queryRun object.
Do this by adding the result of the queryRun.pack() method to the container:
When combining dialog fields with a query, the first container still contains the
#CurrentList macro:
The unpack() method re-initializes the queryRun object from the saved
information. Do this as shown by the following content.
When combining dialog fields with a query, the unpack of the container contains
the #CurrentList macro.
Best Regards,
Hossein Karimi
dialog. If the user must access the query in the dialog, override this method and
return true.
1 | public boolean showQueryValues() |
This method should now include the information stored in the queryRun object.
Do this by adding the result of the queryRun.pack() method to the container:
1 | public container pack() |
When combining dialog fields with a query, the first container still contains the
#CurrentList macro:
1 | public container pack() |
The unpack() method re-initializes the queryRun object from the saved
information. Do this as shown by the following content.
1 | public boolean unpack(container _packedClass) |
When combining dialog fields with a query, the unpack of the container contains
the #CurrentList macro.
1 | [version, #CurrentList, packedQuery] = _packedClass; |
Best Regards,
Hossein Karimi

Like
Report
*This post is locked for comments