Having trouble getting help?
Contact Support
Contact Support
Hide control buttons in Color Picker Control
19 Dec 20221 minute to read
ColorPicker can be rendered without control buttons (Apply/Cancel). In this case, while selecting a color, the ColorPicker pop-up is closed and selected colors can be applied directly. To hide control buttons, set the showButtons property to false
.
<div class='wrap'>
<h4>Choose Color</h4>
<ejs-colorpicker id="element" showButtons="false"></ejs-colorpicker>
</div>
<style>
.wrap {
margin: 0 auto;
width: 300px;
text-align: center;
}
</style>
NOTE