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
[x] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://forum.primefaces.org/viewforum.php?f=57
When I try to spin with arrow keys, it shows NaN value.
I saw in the code that you lacked to pass the parameter of the original event.
So, here is the FIX.
{
key: "onInputKeyDown",
value: function onInputKeyDown(event) {
if (event.which === 38) {
this.spin(event, 1);
event.preventDefault();
} else if (event.which === 40) {
this.spin(event, -1);
event.preventDefault();
}
}
}
The text was updated successfully, but these errors were encountered:
I'm submitting a ... (check one with "x")
When I try to spin with arrow keys, it shows NaN value.
I saw in the code that you lacked to pass the parameter of the original event.
So, here is the FIX.
The text was updated successfully, but these errors were encountered: