Is there a way to disable the editors from changing the value when pressing the up or down arrow keys?
Thanks,
Don
Hi,
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;}