or
| 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" /> |

| protected void Page_Load(object sender, EventArgs e) |
| { |
| foreach (RadMenuItem item in myGrid.FilterMenu.Items) |
| { |
| item.Text = "some text"; |
| } |
| } |
Reusable content is inserted in the wrong location IE8
When I use the template picker to insert some reusable html content in the Rad editor the HTML snippet is inserted not in the text editor, but shows up in the page.
Details:
The snippet is inserted in the page just below:
| <form name="aspnetForm" id="aspnetForm" action="Homepage.aspx" method="post" submit="function(){try{RadEditorNamespace.SaveAllEditors();var _a0=this.submit;this.submit=_9f;var _a1=this.submit();this.submit=_a0;}catch(exc){}}"> |
| <snippet is inserted here><rest of page... |
The snippet does not showup in the editor iframe and is not saved with the edited content.
Please help,
Regards, Evert
