Opening of colorPicker on button cilck

Hi,
How do i open colorpicker on some button click ? 
Thanks,
Kushal

5 Replies 1 reply marked as answer

GK Gayathri KarunaiAnandam Syncfusion Team April 5, 2021 11:16 AM UTC

Hi Kushal, 

We have checked your reported query. We can achieve your requirement by using toggle method of ColorPicker as demonstrated in the below code snippet. 

<input ejs-colorpicker #color id="color-picker" type="color" /> 
<button ejs-button id="btn" (click)="click()">Normal</button> 


@ViewChild("color") 
  public colorObj: ColorPickerComponent; 
  click() { 
    this.colorObj.toggle(); 
  } 


For your reference, we have prepared a sample based on this scenario. Please check the below link. 



Please get back to us, if you need further assistance. 

Regards, 
Gayathri K 


Marked as answer

KG Kushal Gosar April 5, 2021 04:10 PM UTC

Hi,

I want to open the colorpicker below the custom button without showing split button. how can I achieve it ?

Thanks,
Kushal


SP Sangeetha Priya Murugan Syncfusion Team April 6, 2021 08:53 AM UTC

Hi Kushal, 
 
Thank you for your update. 
 
We have checked your reported requirement and it can be achievable in our color picker, with some customization as like as below.  
 

 
 @ViewChild("color") 
  public colorObj: ColorPickerComponent; 
 
  @ViewChild("dropdownbtn") 
  private ddb: DropDownButtonComponent; 
 
  public onOpen(args: any): void { 
    args.element.parentElement 
      .querySelector(".e-cancel") 
      .addEventListener("click", this.closePopup.bind(this)); 
  } 
 
  public onClose(args: any): void { 
    args.element.parentElement 
      .querySelector(".e-cancel") 
      .removeEventListener("click", this.closePopup.bind(this)); 
  } 
 
  public closePopup(): void { 
    this.ddb.toggle(); 
  } 
 
  // Triggers while selecting colors from color picker. 
  public change(args: ColorPickerEventArgs): void { 
    this.closePopup(); 
  } 
 
 
<h4>Choose color</h4> 
<input ejs-colorpicker type="color" id="element" [inline]="true" (change)="change($event)" /> 
<button ejs-dropdownbutton #dropdownbtn id="dropdownbtn" (open)="onOpen($event)" (beforeClose)="onClose($event)" target=".e-colorpicker-wrapper"> Custom Color</button> 
 
 
/* // To hide caret icon */ 
.e-btn-icon.e-caret { 
  display: none; 
 
 
For your convenience, we have prepared the sample based on your requirement. Please find the link below. 
 
 
 
Could you please check the above links and get back to us, if you need any further assistance on this. 
 
Regards, 
Sangeetha M 




KG Kushal Gosar April 9, 2021 11:12 AM UTC

This solves my requirement.
Thank you,


SP Sangeetha Priya Murugan Syncfusion Team April 12, 2021 06:05 AM UTC

Hi Kushal, 
 
Thank you for your update. 
 
We are happy to hear that your issue has been resolved. Kindly get back to us if you need any further assistance. 
 
Regards, 
Sangeetha M 


Loader.
Up arrow icon