# Check box option In the TPL: ```
``` In `doRender()`: ``` doRender() { this.$backgroundEffects = this.$widget.find("input.background-effects"); this.$backgroundEffects.on("change", () => this.updateCheckboxOption("backgroundEffects", this.$backgroundEffects)); } ``` In `optionsLoaded(options)`: ``` async optionsLoaded(options) { this.setCheckboxState(this.$backgroundEffects, options.backgroundEffects); } ```