or
<telerik:RadToolTipManager ID="PortalNavigationRadToolTipManager" AutoTooltipify="False" RegisterWithScriptManager="True" Width="455" Height="130" HideEvent="LeaveTargetAndToolTip" EnableEmbeddedSkins="True" ContentScrolling="Default" Position="BottomRight" RelativeTo="Mouse" OffsetY="20" runat="server"></telerik:RadToolTipManager>

<telerik:RadAsyncUpload ID="RadAsyncUpload1" runat="server" MultipleFileSelection="Automatic" OverwriteExistingFiles="True" OnClientFileUploaded="OnFileUploaded" DropZones="#FileContainerWrap" HttpHandlerUrl="~/File/RadUploadHandler.ashx" EnableInlineProgress="False" OnClientFileUploading="OnFileUploading" OnClientFilesSelected="OnFilesSelected" Width="100" OnClientValidationFailed="OnFileValidationFailed">
</telerik:RadAsyncUpload>
<script type="text/javascript">
function OnFileUploading(sender, args) {
var obj = { CustomerID: window.CustomerID };
args.set_queryStringParams(obj);
}
.....
</script>
protected override IAsyncUploadResult Process(UploadedFile file, HttpContext context, IAsyncUploadConfiguration configuration, string tempFileName){ try { var CustomerID = context.Request.QueryString["CustomerID"];
......
I just updated to the latest telerik ajax controls (2011.2 915) and now the RadUpload control looks very strange in IE 8. No matter what skin I put on it, it just looks like a gray box with a top and right border and no browse button.
In Firefox it looks correct.
Any ideas?
<telerik:RadGrid ID="gvMainControl" runat="server" AutoGenerateColumns="true" GridLines="None" CellPadding="0" CellSpacing="0" AllowPaging="False" Skin="WebBlue" AllowSorting="true" ShowFooter="True" EnableLinqExpressions="false" AllowCustomPaging="false" > <MasterTableView TableLayout="Auto" AllowFilteringByColumn="False" PageSize="20" CommandItemDisplay="Top" AllowCustomPaging="false" > </MasterTableView></telerik:RadGrid> For i = 0 To intLevels Dim tableViewOrders As New Telerik.Web.UI.GridTableView() tableViewOrders.DataMember = dicTemp(i).GroupBy.GroupBy(0) gvMainControl.MasterTableView.DetailTables.Add(tableViewOrders) Next iProtected Sub gvMainControl_NeedDataSource(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles gvMainControl.NeedDataSource gvMainControl.DataSource = reporting_service.Run(Of Reporting.Item_DrillDown)() gvMainControl.MasterTableView.DataKeyNames = {"Category_Name"} gvMainControl.MasterTableView.ClientDataKeyNames = {"Category_Name"}End SubProtected Sub gvMainControl_DetailTableDataBind(sender As Object, e As Telerik.Web.UI.GridDetailTableDataBindEventArgs) Handles gvMainControl.DetailTableDataBind If e.DetailTableView.DataMember = "Item_Name" Then Dim strCategory_Name As String = CType(e.DetailTableView.ParentItem, Telerik.Web.UI.GridDataItem).GetDataKeyValue("Category_Name") e.DetailTableView.DataSource = New Reporting_Service.Query(Global.Reporting_Service.Query.Report_Type.Items, New Dictionary(Of String, String) From {{"Category_Name", strCategory_Name}}, _ Nothing, New Reporting_Service.Query.Group(New List(Of String)({"Item_Name"}), New List(Of String)({"Quantity", "Total_Price"})), New List(Of String)({"Quantity"}), True, Nothing, Me.strUniqueID).Run(Of Reporting.Item_DrillDown)() End If