Page 1 of 1

Strange tab stop behavior on grid subfrom without delete

Posted: Sun Jun 05, 2022 11:11 pm
by damien
Hello,

I notice that the tab stop has a strange behavior on the subform in grid version when delete is disabled.
At the end of the line, the last TAB must focus the element of the next line.
But instead it select some "ghost" delete checkbox.
From user point of view nothing is selected.
The next TAB hit select the next line.

Do you have an idea how to correct it ?

Re: Strange tab stop behavior on grid subfrom without delete

Posted: Mon Jun 06, 2022 10:22 am
by kev1n
Hi,

Edit nuform.js and change this line

Code: Select all

objDel.css({'width' : 0, 'height' : 0, 'left' : -10, 'top' : 10})	
into

Code: Select all

objDel.css({'width' : 0, 'height' : 0, 'left' : -10, 'top' : 10}).attr('tabindex','-1');
Log in again into nuBuilder after this change.

Re: Strange tab stop behavior on grid subfrom without delete

Posted: Mon Jun 06, 2022 8:07 pm
by damien
Thanks, it works perfectly.
Do you think to put it into the main dev branch ?

Re: Strange tab stop behavior on grid subfrom without delete

Posted: Mon Jun 06, 2022 8:09 pm
by kev1n
It's already on Github

Re: Strange tab stop behavior on grid subfrom without delete

Posted: Tue Jun 07, 2022 10:58 am
by damien
Excellent you are too fast ;-)