I have a problem with a RadUpload while using it in a RadGrid. In Firefox this RadUpload is presented just fine, when i try to use it in Internet Explorer, the RadUpload is messed up. THis means that it don't adjust the skin to the control and also shows the "browse" option on weird places when i hover the control. I attached 2 printscreens to this message to show the problem.
Beneath i have the code.
Beneath i have the code.
| <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ucKlantDocumenten.ascx.cs" |
| Inherits="VEGAS.Klanten.ucKlantDocumenten" %> |
| <telerik:RadGrid ID="RGKlantDocumenten" runat="server" GridLines="None" AllowPaging="True" |
| AllowSorting="True" AutoGenerateColumns="False" ShowStatusBar="True" OnPreRender="RGKlantDocumenten_PreRender" |
| OnNeedDataSource="RGKlantDocumenten_NeedDataSource" OnItemCommand="RGKlantDocumenten_ItemCommand" |
| Skin="Telerik" OnDetailTableDataBind="RGKlantDocumenten_DetailTableDataBind" AllowMultiRowSelection="False"> |
| <PagerStyle Mode="NumericPages"></PagerStyle> |
| <MasterTableView Width="100%" DataKeyNames="intKlantDocumentID" EditMode="PopUp"> |
| <DetailTables> |
| <telerik:GridTableView DataKeyNames="intDocumentID" Width="100%" SkinID="2" Name="FysiekDocument" |
| runat="server" HierarchyLoadMode="Client" CommandItemDisplay="Top" CommandItemSettings-AddNewRecordText="Upload document" |
| CommandItemSettings-RefreshText="Vernieuw" EditMode="Popup"> |
| <Columns> |
| <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn1"> |
| <HeaderStyle Width="20px" /> |
| <ItemStyle CssClass="MyImageButton" /> |
| </telerik:GridEditCommandColumn> |
| <telerik:GridBoundColumn DataField="intDocumentID" UniqueName="intDocumentID" Visible="true"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="strDocumentNaam" UniqueName="strDocumentNaam" |
| HeaderText="Documentnaam" Visible="true"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="strFileName" UniqueName="strFileName" HeaderText="Document" |
| Visible="true"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="strDocumentextensie" HeaderText="Documentextensie" |
| SortExpression="strDocumentextensie" UniqueName="strDocumentextensie"> |
| </telerik:GridBoundColumn> |
| <telerik:GridDateTimeColumn DataField="dtmUpload" HeaderText="Upload datum" UniqueName="dtmUpload" |
| DataFormatString="{0:dd/MM/yyyy}"> |
| </telerik:GridDateTimeColumn> |
| <telerik:GridBoundColumn DataField="intKlantDocumentID" UniqueName="intKlantDocumentID" |
| Visible="true"> |
| </telerik:GridBoundColumn> |
| <telerik:GridTemplateColumn> |
| <ItemTemplate> |
| <asp:LinkButton ID="btnTTT333TTT" runat="server" Text='<%# Eval("strFileName") %>' |
| CommandName="Download" /> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridButtonColumn ConfirmText="Wilt u dit klantdocument verwijderen?" ButtonType="ImageButton" |
| CommandName="Delete" Text="Delete" UniqueName="DeleteColumn1"> |
| <HeaderStyle Width="20px" /> |
| <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" /> |
| </telerik:GridButtonColumn> |
| </Columns> |
| <EditFormSettings UserControlName="ucKlantDocumentDetails.ascx" EditFormType="WebUserControl"> |
| <EditColumn UniqueName="EditCommandColumn1"> |
| </EditColumn> |
| <PopUpSettings ScrollBars="Auto" Height="300px" Width="550px"></PopUpSettings> |
| </EditFormSettings> |
| </telerik:GridTableView> |
| </DetailTables> |
| <Columns> |
| <telerik:GridBoundColumn DataField="intKlantDocumentID" UniqueName="intKlantDocumentID" |
| Visible="true"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="strTypeStap" UniqueName="strTypeStap" Visible="true"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="intBeheerDocumentID" UniqueName="intBeheerDocumentID" |
| Visible="true" HeaderText="Document ID"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="strDocumentNaam" UniqueName="strDocumentNaam" |
| HeaderText="Documentnaam" Visible="true"> |
| </telerik:GridBoundColumn> |
| <telerik:GridDateTimeColumn DataField="dtmVerloopdatum" HeaderText="Verloop datum" |
| UniqueName="dtmVerloopdatum" DataFormatString="{0:dd/MM/yyyy}"> |
| </telerik:GridDateTimeColumn> |
| </Columns> |
| </MasterTableView> |
| </telerik:RadGrid> |
