Is there a way to disable the editors from changing the value when pressing the up or down arrow keys?
Thanks,
Don
Hi,
To disable spin on arrow keys can be done using property SpinButtons.SpinOnArrowKeys=false. In this case keydown event is not processed (and not canceled). I am not sure if grid will be able to intercept those up/down arrows and do its default actions. It should be tested for a particular application (and browser).
The WebCurrencyEdit and the WebNumericEdit have a spin client-side event - you can cancel it
function WebCurrencyEdit1_Spin(oEdit, delta, oEvent){ //Add code to handle your event here. oEvent.cancel = true;}