ColorPicker - Website scrolls/stutters upwards when opened

Hello Syncfusion Team,


I've found a problem with the ColorPicker. When you open the ColorPicker and the cursor is on top (brightness is all the way up) the website stutters a few pixel upwards. I found out that it is only when the cursor (the small circle) is sticking out on top. 

I have attached a short video demo.


Do you know how to fix this?


Kind Regards, Peter


Attachment: Syncfusion_ac55ddac.zip

4 Replies 1 reply marked as answer

SP Sangeetha Priya Murugan Syncfusion Team March 9, 2022 03:03 PM UTC

 
 
We need to validate more on your reported issue. So, we will update you the further details on March 11th, 2022. 
 
Regards, 
Sangeetha M 



SP Sangeetha Priya Murugan Syncfusion Team March 15, 2022 10:46 AM UTC

Hi Peter, 
 
We have checked your reported issue and suggest you to set the visibility hidden for handler element and make it as visible in open event before focus the element as like as below. 
 
 public onOpen(args: any): void { 
    args.element.querySelector('.e-handler').style.display = 'inline'; // handler element 
    (args.element.querySelector('.e-handler') as any).focus({ 
      preventScroll: true, 
    }); 
  } 
 
 
.e-container .e-hsv-container .e-handler { 
  display: none; 
} 
 
 
 
Could you please check the above details and get back to us, if you need any further assistance on this. 
 
Regards, 
Sangeetha M 



PL Peter Linecker May 19, 2022 12:47 PM UTC

Hi Syncfusion-Team,


your answer is working but I have found (in my opinion) an even better solution.

When you have multiple colorpickers and do not want to change every single one to have this onOpen method, you can put this code in your styles.css:


.e-colorpicker-popup.e-popup-open {
    .e-container .e-hsv-container .e-handler {
        display: inline;
    }
}

.e-colorpicker-popup.e-popup-close {
    .e-container .e-hsv-container .e-handler {
        display: none;
    }
}


This will change every color picker since the style is in your global css file and you don't have to do anything in html or typescript to fix this bug.


Kind Regards, Peter


Marked as answer

YA YuvanShankar Arunagiri Syncfusion Team May 20, 2022 11:28 AM UTC

Hi Peter,


Thanks for sharing this solution. Please let us know if you need any other assistance.


Regards,

YuvanShankar A


Loader.
Up arrow icon