Disabled in Color Picker Control

19 Dec 20221 minute to read

To achieve disabled state in ColorPicker, set the disabled property to true. The ColorPicker pop-up cannot be accessed in disabled state.

<div class='wrap'>
    <h4>Disabled state</h4>
    <ejs-colorpicker id="element" disabled="true"></ejs-colorpicker>
</div>

<style>
    .wrap {
        margin: 0 auto;
        width: 300px;
        text-align: center;
    }
</style>

NOTE

View Sample in GitHub.