OO.ui.CheckboxMultioptionWidget.prototype.setDisabled = function ( disabled ) {
    OO.ui.CheckboxMultioptionWidget.super.prototype.setDisabled.call( this, disabled );
    this.checkbox.setDisabled( this.isDisabled() );
    return this;
};