Hi TelerikTeam,
I have a RadCombobox,when selecting the item in the RadCombobox and click on enter button,i need to trap Click event of the 'btnGo' Button event.
I have a RadCombobox,when selecting the item in the RadCombobox and click on enter button,i need to trap Click event of the 'btnGo' Button event.
<telerik:RadComboBox ID="rcbTest" runat="server" Width="200px" Skin="Web20" AllowCustomText="true" MarkFirstMatch="true" AutoPostBack="true" OnSelectedIndexChanged="rcbTest_OnSelectedIndexChanged"> <Items> <telerik:RadComboBoxItem Text="Test1" Value="1" /> <telerik:RadComboBoxItem Text="Test2" Value="2" /> <telerik:RadComboBoxItem Text="Test3" Value="3" /> <telerik:RadComboBoxItem Text="Test4" Value="4" /> <telerik:RadComboBoxItem Text="Test5" Value="5" /> </Items> </telerik:RadComboBox> <asp:Button ID="btnGo" runat="server" Text=" Go " Width="75px" OnClick="btnGo_Click"/>Please tell me how can i acheive this scenario.
Thank You
Shaik Nazeer Hussain