-
Notifications
You must be signed in to change notification settings - Fork 441
Description
🔍 Issue Summary – Filter Reset Bug in Power Apps Grid Control (PCF)
We’ve identified a bug affecting list views in model-driven apps using the Power Apps grid control (modern PCF-based Fluent UI grid).
✅ Steps to Reproduce:
Navigate to a list/grid using the Power Apps grid control with an active default view.
Apply filters to one or more columns.
Click “Clear filters” — filters are removed as expected.
Click “Reset filters” — instead of restoring the default view’s filters, the grid simply refreshes the cleared state.
🧠 Root Cause:
This appears to be a bug in the Power Apps grid control’s client-side state handling:
After filters are cleared, the control does not reapply the original view definition.
The "Reset filters" button behaves like a simple refresh rather than restoring the defined default filters.
🎯 Impact:
Users are unable to revert to the original view’s filters without manual intervention.
Results in inconsistent and confusing user experience, especially in filter-heavy applications.
🛠 Workarounds:
Click the refresh button on the browser
Add a custom command bar button to call setCurrentView() with the known default view ID and name.
Reload the page or navigate away to force full reinitialisation.