I am getting above error, I have a doubt for now I am using record data function to get the data and using it as a source for grid component. i tried changing source to result to queryrecordtype instead of recorddata also . so as this message suggest Do I need to directly reference the recordtype in the data field of grid component?
Discussion posts and replies are publicly visible
Your rule might returns null when conditions aren't met. The grid's data parameter must always have record-sourced data when using userFilters/showSearchBox.Never return null from your rule. Always return a!recordData(), even if it's filtered to return zero records when conditions aren't met.
Okay, then can I just remove the condition and add the ignoreFiltersWithEmptyValues set to true.
Yes, But Make sure, It will return ALL records (or records matching remaining filters) when values are empty. Test the rule properly to ensure it returns recordData instead of null.
Let me know if this works for you..
Sure. I will try. Thank you Shubham