Hello. I inherited an asp.net application that uses Telerik.Web.UI.
On this one particular page it uses asp:DropDownList that works in older browsers (i.e. Firefox 14), but the DDL would not expand in current version of Firefox, Chrome, IE. Has anyone encountered this problem yet?
Any help is greatly appreciated.
-Hoi Pham
<telerik:RadGrid
ID="uxRadGrid" runat="server"
AllowPaging="True"
AllowCustomPaging="True"
AllowSorting="True"
GridLines="None"
VirtualItemCount="0"
PageSize="1"
OnNeedDataSource="uxRadGrid_NeedDataSource"
AllowMultiRowSelection="True"
AutoGenerateColumns="False"
GroupingEnabled="False"
OnDataBound="uxRadGrid_DataBound"
OnItemCommand="uxRadGrid_ItemCommand"
EnableViewState="true"
OnItemDataBound="uxRadGrid_ItemDataBound"
EnableEmbeddedSkins="false"
ImagesPath="~/images/"
onsortcommand="uxRadGrid_SortCommand"
onselectedindexchanged="uxRadGrid_SelectedIndexChanged">
<MasterTableView GridLines="None" RetrieveNullAsDBNull="true" AllowCustomSorting="true">
<Columns>
<telerik:GridClientSelectColumn UniqueName="uxSelectCheckBox" HeaderStyle-Width="25px" Visible="false" />
<telerik:GridTemplateColumn
HeaderText="DayPart"
UniqueName="uxPlaylistDayPartCol"
HeaderStyle-Width="85"
HeaderStyle-ForeColor="White"
HeaderStyle-VerticalAlign="Top">
<ItemTemplate>
<asp:DropDownList ID="ddlTimeFrom" runat="server" Width="75" />
</ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
On this one particular page it uses asp:DropDownList that works in older browsers (i.e. Firefox 14), but the DDL would not expand in current version of Firefox, Chrome, IE. Has anyone encountered this problem yet?
Any help is greatly appreciated.
-Hoi Pham
<telerik:RadGrid
ID="uxRadGrid" runat="server"
AllowPaging="True"
AllowCustomPaging="True"
AllowSorting="True"
GridLines="None"
VirtualItemCount="0"
PageSize="1"
OnNeedDataSource="uxRadGrid_NeedDataSource"
AllowMultiRowSelection="True"
AutoGenerateColumns="False"
GroupingEnabled="False"
OnDataBound="uxRadGrid_DataBound"
OnItemCommand="uxRadGrid_ItemCommand"
EnableViewState="true"
OnItemDataBound="uxRadGrid_ItemDataBound"
EnableEmbeddedSkins="false"
ImagesPath="~/images/"
onsortcommand="uxRadGrid_SortCommand"
onselectedindexchanged="uxRadGrid_SelectedIndexChanged">
<MasterTableView GridLines="None" RetrieveNullAsDBNull="true" AllowCustomSorting="true">
<Columns>
<telerik:GridClientSelectColumn UniqueName="uxSelectCheckBox" HeaderStyle-Width="25px" Visible="false" />
<telerik:GridTemplateColumn
HeaderText="DayPart"
UniqueName="uxPlaylistDayPartCol"
HeaderStyle-Width="85"
HeaderStyle-ForeColor="White"
HeaderStyle-VerticalAlign="Top">
<ItemTemplate>
<asp:DropDownList ID="ddlTimeFrom" runat="server" Width="75" />
</ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>