Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Strange tab stop behavior on grid subfrom without delete Topic is solved

Questions related to using nuBuilder Forte.
Post Reply
damien
Posts: 30
Joined: Fri May 06, 2022 10:38 pm
Has thanked: 14 times

Strange tab stop behavior on grid subfrom without delete

Unread post 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 ?
kev1n
nuBuilder Team
Posts: 4297
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 445 times
Contact:

Re: Strange tab stop behavior on grid subfrom without delete

Unread post 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.
damien
Posts: 30
Joined: Fri May 06, 2022 10:38 pm
Has thanked: 14 times

Re: Strange tab stop behavior on grid subfrom without delete

Unread post by damien »

Thanks, it works perfectly.
Do you think to put it into the main dev branch ?
kev1n
nuBuilder Team
Posts: 4297
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 445 times
Contact:

Re: Strange tab stop behavior on grid subfrom without delete

Unread post by kev1n »

It's already on Github
damien
Posts: 30
Joined: Fri May 06, 2022 10:38 pm
Has thanked: 14 times

Re: Strange tab stop behavior on grid subfrom without delete

Unread post by damien »

Excellent you are too fast ;-)
Post Reply