listener to control two exclusive checkboxes I have an object with two checkbox fields (Primary and Secondary). For any record the checkboxes are exclusive - one or the either checkbox can be checked, or neither can be checked. I’ve got a Table of such records. How might I create a listener (event handler & renderer) that would enforce exclusivity? I created a listener that would force Secondary to be unchecked whenever Primary is checked, but I need the opposite to also be enforced. I’ve tried separate listeners on the two fields, but I can’t get both to work at the same time, and if they did I’d end up with dueling listeners. If I had complete control over the object, I’d replace the checkboxes with a picklist and display it as radio buttons, but I don’t. Here’s my one-way listener, for what it’s worth: var field = arguments[0], value = arguments[1], renderer = skuid.ui.fieldRenderers[field.metadata.displaytype], mode = field.mode; // Get the household members model we are using for the renderer var householdMembersModel =