Disabled
21 Mar 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>
public ActionResult Disabled()
{
return View();
}