Can any one tel me how to enable lookup in Query range Criteria.
I have the same issue.
There is a custom lookup on the field, which works when browsing the table and clicking the value (also works when I add the edt to a form). But the lookup is not shown when I select the field in the query form.
Anybody have a solution to this?
The problem is that standard Ax query engin does not allow the lookup if the extended datatype has it’s own lookup form.
Solution:
Overwrite the SysLookup class by adding an else if
else if (SysLookup::typeHasFormHelp(sysDictField.typeId())) // Changed on 2015.05.15 by c
{
formLookupButton = FormLookupButton::Always;
}
Regards,
Celeste