Hello,
I have encounter a problem in using RadComboBox in Safari, the item lists' position not shown under the textbox but some where else with the scrolling, I have check another page and not found this problem, I checked the codes and have no idea why this happened.
the code snippets like
I have encounter a problem in using RadComboBox in Safari, the item lists' position not shown under the textbox but some where else with the scrolling, I have check another page and not found this problem, I checked the codes and have no idea why this happened.
the code snippets like
| <div id="site"> |
| <div class="devide"> |
| <fieldset class="column_left"> |
| ...... |
| <div class="dl"> |
| <div class="dt"> |
| <label for="ddlDepartment">Avdeling:</label></div> |
| <%--<asp:DropDownList ID="ddlDepartment" runat="server" CssClass="drop_wide" AppendDataBoundItems="true" > |
| <asp:ListItem Value="0" Text="- Velg avdeling -" /> |
| </asp:DropDownList>--%> |
| <telerik:RadComboBox ID="RCBDepartment" runat="server" AppendDataBoundItems="true" > |
| <Items> |
| <telerik:RadComboBoxItem Value="0" Text="- Velg avdeling -" /> |
| </Items> |
| </telerik:RadComboBox> |
| <span class="required">*</span> |
| </div> ... </fieldset> |
| </div> |
| </div> |