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 ?
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
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
-
- nuBuilder Team
- Posts: 4297
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: Strange tab stop behavior on grid subfrom without delete
Hi,
Edit nuform.js and change this line
into
Log in again into nuBuilder after this change.
Edit nuform.js and change this line
Code: Select all
objDel.css({'width' : 0, 'height' : 0, 'left' : -10, 'top' : 10})
Code: Select all
objDel.css({'width' : 0, 'height' : 0, 'left' : -10, 'top' : 10}).attr('tabindex','-1');
Re: Strange tab stop behavior on grid subfrom without delete
Thanks, it works perfectly.
Do you think to put it into the main dev branch ?
Do you think to put it into the main dev branch ?