Hi sveins12,
I checked the numberfield behavior in ExtJS 6.5.0 & ExtJS 6.7.0 Classic toolkit, there is no difference in spinner up/down button clicks. If I click up button, it increase the value, otherwise decrease the value if I click on down button. You can check demo on below sencha documentation for numberfield.
https://docs.sencha.com/extjs/6.5.0/...ld.Number.html
https://docs.sencha.com/extjs/6.7.0/...ld.Number.html
Although if you still want to change the behavior of up and down buttons click, then you can override onSpinUp() and onSpinDown() functions of Ext.form.field.Number class and define those behavior according to your need.
Cheers!