All Products
Demos
Services
Blogs
Docs & Support
Pricing
Search
Shopping cart
Login
Contact Us
Get A Free Trial
close mobile menu
Telerik Forums
/
UI for ASP.NET AJAX Forum
/
Input
/
Adding onclientblur event on numerictextbox
Cancel
Telerik UI for ASP.NET AJAX
Resources
Buy
Try
Feed for this thread
2 posts, 0 answers
AereoN
36 posts
Member since:
Oct 2009
Posted 14 Dec 2009
Link to this post
I don't see any option for me to add client events on numerictextbox.
Am i missing something since I dont see the option in the intellisense?
Shinu
17764 posts
Member since:
Mar 2007
Posted 14 Dec 2009
Link to this post
Hello AereoN,
You can attach the client events as shown below inside ClientEvents tags in RadNumericTextBox declaration.
ASPX:
<
telerik:RadNumericTextBox
ID
=
"RadNumericTextBox2"
runat
=
"server"
ShowSpinButtons
=
"true"
>
<
ClientEvents
OnKeyPress
=
"OnKeyPress"
OnMoveDown
=
"OnMoveDown"
/>
</
telerik:RadNumericTextBox
>
Also checkout the following documentation:
Client-Side Events
-Shinu.
Back to Top
Close