A RepeatingPanel in a form has stopped working. It was working as expected, then I changed something on other areas of the app, and when I tried to use that RepeatingPanel again I saw “No such form ‘OrganizationClients’”.
The ‘OrganizationClients’ form exists and is visible in the designer inside the RepeatingPanel, but when the app runs it doesn’t work.
Why did it stop working?
EDIT
I found the cause of the problem: The form used by the RepeatingPanel imports another form and uses it inside a custom alert. That custom alert form was in my low priority todo list and had a syntax error in the code. Apparently the import was failing only at runtime, not in design mode.
Some clearer diagnostic message would have saved me some time