user3107242
user3107242

Reputation: 33

phpmyadmin column headers move in table when you scroll

I have noticed that when you scroll through a page in PHPMYADMIN the column headers shift sometimes putting the column header over the top of a different column causing confusing but i cannot for the life of me work out where to report this bug.

Anyone know?

Upvotes: 1

Views: 709

Answers (2)

Isaac Bennetch
Isaac Bennetch

Reputation: 12422

This bug has been reported and fixed for version 4.2.9; see https://sourceforge.net/p/phpmyadmin/bugs/4538 for details.

Upvotes: 0

user3906103
user3906103

Reputation: 32

Open <php_my_admin_folder>/js/sql.js and change

return $originalColumns.eq(i).width();

to

return Math.floor($originalColumns.eq(i).width()) + 1;


tested in pma 4.2.6+ and should work in prev releases.

Upvotes: 2

Related Questions