• Closed by: Anonymous Submitter
  • Closed on:
  • Reason: Not a bug

Ticket #18309 - Header Items widget bug 1

As you can see on this video, the login box hides if you have some autofill data.
How can this be fixed?

https://drive.google.com/file/d/10T_AuuOoIepNLU7CuN7XRc91_oXel7xr/view

Comments

Fred 12 Jun 2020, 15:55

unable to connect to your server

Response: 	530 Login authentication failed
Error:        	Critical error: Could not connect to server
Thomas Blauenfeldt 12 Jun 2020, 18:02

check again correct url is https://svane-el.dk/da/

Thomas Blauenfeldt 13 Jun 2020, 15:03

up

Fred 14 Jun 2020, 10:27

I have updated the file /themes/alysum/assets/js/alysum.js Please clear cache and test out the issue

Thomas Blauenfeldt 15 Jun 2020, 10:23

Dosent work, still an issue.

Thomas Blauenfeldt 15 Jun 2020, 14:05

UP

Thomas Blauenfeldt 16 Jun 2020, 09:02

… :)

Fred 16 Jun 2020, 15:24

all works fine for me https://take.ms/Yk9rZ

Thomas Blauenfeldt 16 Jun 2020, 16:01

You did not Mouse over auto fill like in my video

Thomas Blauenfeldt 16 Jun 2020, 16:01

Also you did not use Chrome or try to move Mouse outside box field while in input field

Thomas Blauenfeldt 16 Jun 2020, 16:41

can also share teamviewer if you wanna see

Fred 17 Jun 2020, 22:22

Yes, I see now. That is a strange chrome behaviour. Didn’t find fast solution. Need more time

Thomas Blauenfeldt 19 Jun 2020, 10:37

any news ?

Fred 19 Jun 2020, 10:41

no news yet

Thomas Blauenfeldt 20 Jun 2020, 15:23

up

Thomas Blauenfeldt 11 Jul 2020, 12:34

any news ? .. think this is a big UI issue

Fred 13 Jul 2020, 17:24

when click on a field a browser show a suggestions and if you hover over that suggestion JavaScript detects that cursor is not on a dropdown section and it collapsed (there is no such issue in Safari). So, for now we are not able to detect that suggestion area to exclude it. As for me that issue is more related to browser than to javascript dropdown solution.
We remember about this problem and provide a solution as soon as it will be found out

Fred 30 Jul 2020, 11:22

Hi, Thomas.
Please ty the following solution

$(dd_el).hover(
    function() {
        $(dd_cont).stop().slideUp(0, 'easeOutExpo');
        $(this).children(dd_cont).stop().slideDown(500, 'easeOutExpo').addClass(dd_el_hover);
    },
    function(){
      $(this).children(dd_cont).removeClass(dd_el_hover).stop().slideUp(200, 'easeOutExpo');
    }
);

add it to the alysum.js file, like this: https://take.ms/LQ9PW

Fred 30 Jul 2020, 11:35

Sorry, it doesn’t work, I forgot to test it out in Chrome.

Thomas Blauenfeldt 30 Jul 2020, 12:01

nope :/

Fred 30 Jul 2020, 12:02

Yes, I already see that

Thomas Blauenfeldt 04 Oct 2020, 13:12

this is still an issue, can i disable the mouseover / popup until there is a fix ?

Fred 05 Oct 2020, 11:09

I can’t reproduce the issue, could you please make a screen recording?

Fred 05 Oct 2020, 20:02

Unfortunately, there is still no solution.
I had an idea to disable autocompletion but there is no way to do that, unfortunately.
I have also noticed there is no such problem in Safari, so it looks like a bug of Chrome

Thomas Blauenfeldt 06 Oct 2020, 08:20

yea it seams to be a chrome issue, can we disable the drop down menu and just make it a link to the login page ?

Fred 06 Oct 2020, 09:50

try following CSS

.pk_register .opt-list {display:none}