Created a screen with table from database and added a Search widget but not able to get particular data while searching. Its just refreshing the data but not displaying the particular data I am searching.
Hi Priya,
You need to add a filter in the aggregate to filter the data based on the search keyword. Add a filter like <EntityName>.<AttributeName> like "%" + SearchKeyword + "%" (Search filter can be modified depending on your requirement).
Thanks
Hi,
Not able to see any search filter in the aggregate. For filtering the result we need to apply filter value in the aggregate. It will be something like :
SearchKeyword = RequestList.Tool_ToolType
You can compare search keyword with any attribute in the aggregate. Can compare with more than one attribute. Can also check for exact match or partial match.
Thank you.
If your issue is resolved, please mark the helpful answer as a solution so others with the same issue can reference it.
Hi ,
I have done modification in your oml and attached it for your reference searching is working .Hope this solves your problem.