Click here to Skip to main content
15,919,358 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
<sbnt:SBNTTextBox ID="txtEmpNO"  AutoPostBack ="true"   runat="server"  önkeydown="return KeyDown(event)" >            

   <script type="text/javascript" id="telerikClientEvents1">

           var textBox = $get("<%= txtEmpNO.ClientID %>_text"); 
            function KeyDown(e) {
                if (e.keyCode == 9) // tab key
                {
                   alert(textBox.get_textBoxValue()); //Not getting text box entered value after //press TAB key

                    var manager = $find("<%= radAjaxManager.ClientID %>");
                    if (!manager) return;
                   
                    manager.ajaxRequest('EmpNoSearch');
                }
                document.title = textBoxValue.toLowerCase();
            } 
  </script>
Posted
Updated 17-Oct-13 6:35am
v2
Comments
Harshil_Raval 17-Oct-13 8:20am    
I think on blur event you want to fire some event. then use onBlur event instead of onKeyDown.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900