| <%@ Control Language="C#" AutoEventWireup="true" CodeFile="GuestAdmin.ascx.cs" Inherits="GuestAdmin" %> |
| <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> |
| <telerik:RadGrid ID="GridReunionGuests" AllowFilteringByColumn="False" AllowPaging="True" |
| Skin="Vista" AllowSorting="False" runat="server" AutoGenerateColumns="False" |
| DataSourceID="ReunionGuestsDataSource" GroupingEnabled="true"> |
| <MasterTableView DataKeyNames="ReunionGuestsID" DataSourceID="ReunionGuestsDataSource" ShowGroupFooter="true"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="FirstName" HeaderText="First" /> |
| <telerik:GridBoundColumn DataField="LastName" HeaderText="Last" /> |
| <telerik:GridBoundColumn DataField="Age" HeaderText="Age" /> |
| <telerik:GridDropDownColumn DataField="GuestOptionsID" DataSourceID="GuestOptionsDataSource" |
| HeaderText="Options" ListTextField="GuestOption" ListValueField="GuestOptionsID" |
| UniqueName="GuestOption"> |
| </telerik:GridDropDownColumn> |
| <telerik:GridDropDownColumn DataField="RelationShipsID" DataSourceID="RelationShipsDataSource" |
| HeaderText="Relationship" ListTextField="Description" ListValueField="RelationShipsID" |
| UniqueName="RelationShip"> |
| </telerik:GridDropDownColumn> |
| <telerik:GridBoundColumn DataField="SpecialRequirements" HeaderText="Special Requirements" /> |
| <telerik:GridBoundColumn DataField="ReunionYear" HeaderText="Reunion" /> |
| <telerik:GridBoundColumn DataField="DateStamp" HeaderText="Date Stamp" /> |
| <telerik:GridDropDownColumn DataField="RegStatusID" DataSourceID="RegStatusDataSource" |
| HeaderText="Status" ListTextField="RegistrationStatus" ListValueField="RegStatusID" |
| UniqueName="Status"> |
| </telerik:GridDropDownColumn> |
| <telerik:GridBoundColumn DataField="Cost" HeaderText="Cost" FooterText="Total: " Aggregate="Sum" DataFormatString="{0:C}" ItemStyle-HorizontalAlign="Right" DataType="System.Double" /> |
| </Columns> |
| <GroupByExpressions> |
| <telerik:GridGroupByExpression> |
| <SelectFields> |
| <telerik:GridGroupByField HeaderText="Transaction ID" FieldName="transactiongroup"></telerik:GridGroupByField> |
| <telerik:GridGroupByField FieldName="Email"></telerik:GridGroupByField> |
| <telerik:GridGroupByField HeaderText="Customer ID" FieldName="CUSTID"></telerik:GridGroupByField> |
| <telerik:GridGroupByField HeaderText="Cost" FieldName="Cost" Aggregate="Sum"></telerik:GridGroupByField> |
| </SelectFields> |
| <GroupByFields> |
| <telerik:GridGroupByField FieldName="transactiongroup"></telerik:GridGroupByField> |
| </GroupByFields> |
| </telerik:GridGroupByExpression> |
| </GroupByExpressions> |
| </MasterTableView> |
| </telerik:RadGrid> |
| <asp:SqlDataSource ID="ReunionGuestsDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:edu_yale_som_alumnireunion_connectionstring %>" |
| ProviderName="System.Data.SqlClient" SelectCommand="SELECT * FROM [ReunionGuests] WHERE Submitted='true'"> |
| </asp:SqlDataSource> |
| <asp:SqlDataSource ID="GuestOptionsDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:edu_yale_som_alumnireunion_connectionstring %>" |
| ProviderName="System.Data.SqlClient" SelectCommand="SELECT [GuestOptionsID], [GuestOption] FROM [GuestOptions] WHERE Visible='true' order by DisplayOrder"> |
| </asp:SqlDataSource> |
| <asp:SqlDataSource ID="RelationShipsDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:edu_yale_som_alumnireunion_connectionstring %>" |
| ProviderName="System.Data.SqlClient" SelectCommand="SELECT [RelationShipsID], [Description] FROM [RelationShips]"> |
| </asp:SqlDataSource> |
| <asp:SqlDataSource ID="RegStatusDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:edu_yale_som_alumnireunion_connectionstring %>" |
| ProviderName="System.Data.SqlClient" SelectCommand="SELECT [RegStatusID], [RegistrationStatus] FROM [RegStatus]"> |
| </asp:SqlDataSource> |
<telerik:GridTemplateColumn HeaderText="Qty/Bundle" HeaderStyle-CssClass="gridHeadStyle-5" ItemStyle-HorizontalAlign="Right"> <ItemTemplate> <telerik:RadTextBox ID="QTY" Width="95%" CssClass="textbox-amount" Text='<%#Eval("QnttyPerBundle", "{0:N3}")%>' runat="server" MaxLength="16" onclick="this.select()" AutoPostBack="false" OnTextChanged="txtInvceDetails_TextChanged" /> </ItemTemplate> </telerik:GridTemplateColumn>

Hi,
I recently upgraded some controls on an aspx page from <asp:DropDownList> to <telerik:RadDropDownList>. I am running a .NET 4.5 website and am referencing the 2013.3.1114.45 version of the Telerik dlls.
When I test out the new DropDownLists using Internet Explorer 11 the dropdownlists expand as expected when I navigate to the page from a browser that is not on the computer hosting the website. However, when I use an older version of Internet Explorer (I have used IE10, and IE8) OR when I use Internet Explorer 11 on the computer that is hosting th website, the dropdownlists don't expand. When clicked, they produce a grey line under the dropdown list, but don't actually expand.
I am binding the dropdown lists in the codebehind as follows:
ddlDF.Items.Clear() ddlDF.DataValueField = "Value"ddlDF.DataSource = AppShared.GetDF() ddlDF.DataBind() 'The Signature of the GetDF function is Shared Function GetDF() As ListItem()
This seems like it must be a pretty basic problem as I'm sure others have used the DropDownList successfully with the 2013.3.1114.45 version of the Telerik dlls in older browsers and browsers on the host machine.
I am attaching screenshots of the dropdownlists when they produce the grey line under them instead of expanding.
Please let me know if you can reproduce this problem or have seen it before
Thomas