If I enter a non-numeric character in the column filter of a numeric column, the page crashes. My customer is getiing it crashed this way. I would have expected to have an inbuilt exception handling for this in RadGrid.
Is there something that you can suggest a fix for?
When using GridumericColumn, it wont accept non-numeric characters in filter textbox since the control is RadNumericTextBox. So, using GridNumericColumn is an option for you.
And if you want to use GridBoundColumn itself and want to prevent non-numeric characters, then that is also possible by attaching "onkeyup" to textbox and then checking for the key pressed in the handler.
Refer the following forum for similar kind of scenario. Grid Filter issue