RadComboBox项目变为透明
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RadComboBox项目变为透明相关的知识,希望对你有一定的参考价值。
我对我的一个RadComboBox有一个有趣的问题。它通过我的网站连接到一个皮肤。除了一页之外的所有内容,RadComboBox的外观和容量都很有效。但是,在一个页面上,可选项目背后的背景变得透明。
这就是定义的样子。
<telerik:RadComboBox RenderMode="Lightweight" ID="RadComboBoxProduct" runat="server" Height="200" Width="415"
DropDownWidth="315" EmptyMessage="--Select--" HighlightTemplatedItems="true"
EnableLoadOnDemand="true" Filter="StartsWith" OnItemsRequested="RadComboBoxProduct_ItemsRequested" ForeColor="Black"
Label="Product:">
<ItemTemplate>
<div style="float: left; elevation: above; azimuth: rightwards; height: 12px; width: 20px; background-color: black">
<%# DataBinder.Eval(Container,"Attributes['CUSTOMER_SHORT_NAME_MARKETING']")%>
</div>
</ItemTemplate>
</telerik:RadComboBox>
请帮帮我。
答案
请查看可能有用的皮肤故障排除文章 - https://docs.telerik.com/devtools/aspnet-ajax/general-information/troubleshooting/skins-troubleshooting#incorrect-or-distorted-appearance
一些专业提示: - 确保它不是IE兼容性问题以及问题不是由全局CSS样式引起 - 开始逐个删除页面内容,直到找到导致问题的原因
以上是关于RadComboBox项目变为透明的主要内容,如果未能解决你的问题,请参考以下文章
text 绑定ItemTemplate RadComboBox代码