On our page we have many RadNumericTextboxes. I know we can use the
IncrementSettings-InterceptMouseWheel="false" setting on an individual control. I'd like to make that the default for all of them on the page. I attempted to use this
$('.riTextBox').bind('mousewheel DOMMouseScroll', function (e) { e.preventDefault(); alert('abort');return false;});
I get my alert box so I know that the code is finding the correct controls, but it's not bypassing the mousewheel event.
The issue is that we have many developers working on this project and we don't want to have to remember to set the IncrementSettings-InterceptMouseWheel="false" flag every time that we add a new control. It would be great if we could just tell all of them to diable it. Is there another way to do this?