Hi Christopher,
Thanks for contacting Syncfusion support.
To open the color picker from clicking anywhere in the control, use our existing colorPicker property “buttonMode”.
By default, ColorPicker control render with SplitButton mode. In this mode, popup will open when clicking on arrow icon only. So for your scenario, please initialize ColorPicker with ‘buttonMode’ as ‘dropdown’.
Please refer to the below code example.
[html]
<input type="text" id="colorPick" />
[script]
$("#colorPick").ejColorPicker({
value: "#278787",
buttonMode: ej.ButtonMode.Dropdown }); // button mode API as enum type
/* or use buttonMode API as string type buttonMode: “dropdown” */
|
Regards,
Sureshkumar P