1. I have Dropdown controls that get styled with the decorator. When the user clicks on the down button, the dropdown list expands, but then clicking the button again will not contract the list. This is breaking the correct operation of the dropdownlist.
2. The styling doesn't match a RadCombo on the same form. The RadCombo has the text box area shaded, the dropdownlist doesn't. Makes it pretty obvious where one or the other was used and provides inconsistent UI. Is there a way to get them to match?
In the master page:
<asp:DropDownList ID="AddressDropDownList" runat="server" DataSourceID="AddressSqlDataSource" DataTextField="adrFullname" DataValueField="adrIdx" AppendDataBoundItems="True" AutoPostBack="True"> <asp:ListItem Value="" Text="--All--"></asp:ListItem></asp:DropDownList>2. The styling doesn't match a RadCombo on the same form. The RadCombo has the text box area shaded, the dropdownlist doesn't. Makes it pretty obvious where one or the other was used and provides inconsistent UI. Is there a way to get them to match?
<telerik:RadComboBox ID="xrcarCarIdxRadComboBox" runat="server" DataSourceID="CarrierListSQLDataSource" DataTextField="carName" DataValueField="carIdx" SelectedValue='<%# Bind("xrcarCarIdx") %>' Width="300" HighlightTemplatedItems="true"> <ItemTemplate> <asp:Label runat="server" ID="CarrierListLabel" > <b><%# Eval("carName") %></b><br /><%# Eval("carAddress")%><br /><%# Eval("carCSZ")%> </asp:Label> </ItemTemplate></telerik:RadComboBox>In the master page:
<telerik:RadFormDecorator ID="FormDecorator1" runat="server" DecoratedControls="all" ></telerik:RadFormDecorator>