Hi. Has there been a change to the RadTextBox, where if you press the Enter key it fires the last button rendered on the page? I have some ClientEvents-OnKeyPress events that use to fire when the Enter key was pressed, but now it isn't working.
Daniel
| function KeyEnterPeople(sender, eventArgs) { |
| var c = eventArgs.get_keyCode(); |
| if (c == 13) { |
| var peopleSearch = document.getElementById('ctl00_rdPeopleSearch_C_btnPeopleQuickSearch'); |
| peopleSearch.click(); |
| } |
| } |
| <Telerik:RadTextBox ID="rtbPeopleQuickSearch" runat="server" Text="Firstname" Width="200px" Skin="Vista" ClientEvents-OnKeyPress="KeyEnterPeople" /> |
Daniel