I have a RadNumericTextBox with AutoPostBack set to true, and server side event attached to the TextChanged event.
I'm using spinners, and setting the MaxValue dynamically on the server side. When I attempt to change the value of the box past the MaxValue, the control validates and places the warning symbol correctly, however it still produces a generic postback. How can I stop this postback from happening, since no data has changed on the front end. Is there a client event that I can attach to and cancel if an attempt is made to go past the max value?
It should also be noted that the same "generic" postback happens if you try to spin below the minvalue as well, or manually attempt to enter a invalid value. However, keying invalid characters, ie (non-numeric) raises the validation icon, but does not cause a postback.
Thanks
I'm using spinners, and setting the MaxValue dynamically on the server side. When I attempt to change the value of the box past the MaxValue, the control validates and places the warning symbol correctly, however it still produces a generic postback. How can I stop this postback from happening, since no data has changed on the front end. Is there a client event that I can attach to and cancel if an attempt is made to go past the max value?
It should also be noted that the same "generic" postback happens if you try to spin below the minvalue as well, or manually attempt to enter a invalid value. However, keying invalid characters, ie (non-numeric) raises the validation icon, but does not cause a postback.
Thanks