- I have a Table control bound to a Dataverse table.
- When a row is selected, I navigate to a details screen passing the selected record.
- On the details screen, I have a back button that navigates me back to the screen containing the Table control.
When I navigate back, the previously selected row remains highlighted/selected. If I click the same row again, the OnSelect does not fire. However, if I click a different row and then come back to the original row, it works as expected.
- Reset(tableControl) — Throws error: "Reset works only for resettable controls." Table control is not resettable.
- Setting SelectedItems = Blank() — SelectedItems is read-only and throws: "Incompatible types for comparison. These types can't be compared: Table, Blank."
- CountRows(tableControl.SelectedItems) = 0 — This is a comparison, not an action. Does nothing.
Is there a cleaner, official way to reset or clear the selection of a Table control after navigation so that clicking the same row again reliably fires OnSelect?

Report
All responses (
Answers (