DropdownGrid Search on Dialog pages do not work

Hi,
On my Dialog pages (Add and Edit) the fields that are dropdowngrids (pulling data from other tables) are pulling the data but the Search option does not work. It appears to be sorting if I click on that option but ignores anything I put in the Search box.
The Search option on the main grids are working with no issue.
Any ideas on what might be the issue on these Dialog pages?

Check your browser console for errors.

Error says:
VM6:1

   GET https://localhost:5001/odata/USDF11V1506/ResponsibleOrgs?$filter=car&$top=5&$skip=0&$count=true 400 (Bad Request)

Hi @lindaharris,

You need to specify the field name and function that should be used for filter. For example:
contains(UserName, '${event.filter}')



1 Like

That fixed it THANK YOU so much!!