Is there a way to bind checkbox change events to a feature select event? For example the following does this for layer visibility.
<input type="checkbox" id="visible" checked>
var visible = new ol.dom.Input(document.getElementById('visible'));
visible.bindTo('checked', layer, 'visible');
I want to allow users to select features from a table.