mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-05-28 00:19:45 +00:00
![]() When the up or down arrow key on the keyboard was pressed while a number text field (or any one descending from Ext.form.field.Spinner) was selected, the up and down callbacks for that text fields KeyNav were called twice. Therefore, the value in the text field would always incorrectly increment/decrement by step * 2. The problem was an overwrite for the onRender() method of the Spinner class, which caused the callbacks for pressing an arrow key to be registered for a second time. Simply not doing that in the overwritten onRender() method fixes the problem. The redundant declarations for spinUpEl and spinDownEl were removed as well. Additionally, the 'mousewheel' event handler, registered in the overwritten (but still executed) parent function, is unregistered now, as it could lead to unintended side effects in browsers which still implement this event. Signed-off-by: Daniel Tschlatscher <d.tschlatscher@proxmox.com> |
||
---|---|---|
debian | ||
src | ||
.gitignore | ||
Makefile |