I've read about how to get validation of my MVC Model working. It's pretty cool.
But I need to validate a strictly UI situation, that doesn't relate to the model. Specifically, I need to check that the user clicked one of several checkboxes before clicking a link. Let me stress, again, that the checkboxes don't represent model data: they're strictly for View and Controller purposes.
In the WebForms world, I'd just stick in a RequiredFieldValidator. What's the equivalent for a field that DOESN'T represent a field on a model?