You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have found a strange behaviour in the library w2ui-1.5.js
Line:8560
code:
setTimeout(function () {
if (['INPUT', 'TEXTAREA', 'SELECT'].indexOf(target.tagName.toUpperCase()) != -1) {
$(target).focus();
} else {
if (!$input.is(':focus')) $input.focus();
}
}, 50);
This code creates a strange effect on my components.
I have a w2grid inside another control and when I use the scroll and then click on a w2grid, all w2grid control disappears ... if I click again on the blank space that leaves the previous effect ... the control appears again.
My workaround to avoid this is comment this setTimeout function.
I do not know if I will have other side effects when commenting on this function.
Could you solve it?
The text was updated successfully, but these errors were encountered:
Not sure what is going on. Is the a way you can replicate it in a jsFiddle? What might be happening is some other element gets focus and it causes grid container to scroll, therefore it disappears.
Hi, I have found a strange behaviour in the library w2ui-1.5.js
Line:8560
code:
This code creates a strange effect on my components.
I have a w2grid inside another control and when I use the scroll and then click on a w2grid, all w2grid control disappears ... if I click again on the blank space that leaves the previous effect ... the control appears again.
My workaround to avoid this is comment this setTimeout function.
I do not know if I will have other side effects when commenting on this function.
Could you solve it?
The text was updated successfully, but these errors were encountered: