or
protected void OnAjaxRequest(object sender, AjaxRequestEventArgs e) { //TODO: } <telerik:RadAjaxManager id="AjaxManager" runat="server" OnAjaxRequest="OnAjaxRequest" />function OnRowChecked(id, checkBox){ var ajaxManager = $find("<%= AjaxManager.ClientID %>"); if (ajaxManager != null) ajaxManager.ajaxRequest(id); else alert("No ajaxManager"); } Hello,
Telerik.Web.UI 2011.1.519.40
IE8
I made a user control in which I put a RadUpload. When I hoover over the select button though, the RadUpload shows an additional TextBox and a Browse Button. The select-functionality seems to work properly when I click, but the control shouldn't show the Textbox and button.
Any idea why the RadUpload behaves like this and how to let it act normally?
With regards,
Bertil de Groot
<telerik:RadUpload ID="RadUploadDocuments" runat="server" Culture="nl-NL" Language="nl-NL" OverwriteExistingFiles="True" MaxFileInputsCount="10" MaxFileSize="1048576000" ControlObjectsVisibility="RemoveButtons, AddButton" AllowedFileExtensions="<%$appSettings:AllowedFileExtensions %>" OnValidatingFile="RadUploadDocuments_ValidatingFile"> <Localization Add="Volgend bestand" Delete="Verwijderen" Remove="Verwijder" Select="Selecteren..." /> </telerik:RadUpload>protected override void OnInit(EventArgs e){ base.OnInit(e); RadFileExplorer1.TreeView.NodeDataBound += new RadTreeViewEventHandler(RadTreeView_OnNodeDataBound);}private void FillTreeViewNodesWithAttributes(RadTreeNode node){ FileBrowserItem fileBrowserItem = (FileBrowserItem)node.DataItem; foreach (string key in fileBrowserItem.Attributes.AllKeys) { node.Attributes[key] = fileBrowserItem.Attributes[key]; } if (node.Nodes.Count > 0) { foreach (RadTreeNode childNode in node.Nodes) { FillTreeViewNodesWithAttributes(childNode); } }}