Gutenberg Block checkbox check-unckeck does not work

admin2025-06-03  4

I have added the custom Gutenberg block for my shortcode, but in checkbox control check uncheck does not work, please check code done as below:

el( components.CheckboxControl, {
    label: i18n.__( 'Display it?', 'txt-domain' ),
    checked: props.attributes.myAttr,
    onChange: function( val ) {
        if( val ) {
            props.setAttributes({ myAttr: '1' })
        } else {
            props.setAttributes({ myAttr: '0' })
        }
    }
} ),

if I remove the checked: props.attributes.myAttr, then it works fine but here, checkbox does not stay checked or uncheck. by the way it saves the value.

I have added the custom Gutenberg block for my shortcode, but in checkbox control check uncheck does not work, please check code done as below:

el( components.CheckboxControl, {
    label: i18n.__( 'Display it?', 'txt-domain' ),
    checked: props.attributes.myAttr,
    onChange: function( val ) {
        if( val ) {
            props.setAttributes({ myAttr: '1' })
        } else {
            props.setAttributes({ myAttr: '0' })
        }
    }
} ),

if I remove the checked: props.attributes.myAttr, then it works fine but here, checkbox does not stay checked or uncheck. by the way it saves the value.

Share Improve this question edited Feb 16, 2019 at 11:50 fuxia 107k39 gold badges255 silver badges461 bronze badges asked Feb 16, 2019 at 11:19 Jaydip NimavatJaydip Nimavat 2244 silver badges10 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 1

The property checked expects boolean value. (CheckboxControl)
How did you define myAttr in attributes? If you set myAttr to '1' or '0' it is both true.
Try empty instead of '0' props.setAttributes({ myAttr: '' }) or false.

Try using the withState wrapper like in the example from the docs : https://wordpress/gutenberg/handbook/designers-developers/developers/components/checkbox-control/

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748898342a314642.html

最新回复(0)