Hi,
I have DropDownList with checkbox.
I noticed that when I use CssClass
all the check icons (v icon for each DropDownListItem)
displayed with invalid icon.
Here is my code:
<%@ Register assembly="Syncfusion.EJ.Web, Version=14.1460.0.46, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" namespace="Syncfusion.JavaScript.Web" tagprefix="ej" %>
<%@ Register Assembly="Syncfusion.EJ, Version=14.1460.0.46, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" namespace="Syncfusion.JavaScript.Models" TagPrefix="ej" %>
<%@ Register Assembly="Syncfusion.EJ, Version=14.1460.0.46, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" Namespace="Syncfusion.JavaScript.DataVisualization.Models" TagPrefix="ej" %>
<style>
.ddlFont { font-family:Arial; }
</style>
<ej:DropDownList ID="DropDownList1" runat="server" ShowCheckbox="true" CssClass="ddlFont">
<Items>
<ej:DropDownListItem Text="a"></ej:DropDownListItem>
<ej:DropDownListItem Text="b"></ej:DropDownListItem>
</Items>
</ej:DropDownList>
Thanks,
Tomer