Don't use setAttribute to attach your onclick handler. Use addEventListener. Combine that with a closure that calls your select function and you can just pass the current object as a parameter the same as you would anything else. Looking at your select function, I don't think it's necessary though.
this.cbox.addEventListener('click', () => {
this.setSelect(this.cbox.checked);
});