Appearance
In this article, you will find information about the styling options and rendering of the Telerik UI for ASP.NET MVC DropDownList.
For a live example, visit the Appearance Demo of the DropDownList.
Options
The DropDownList supports the following styling options:
-
Size
—configures the overall size of the component. -
Rounded
—configures the border radius of the component. -
FillMode
—configures how the color is applied to the component.
Size
The Size
option controls the size of the DropDownList. The k-picker-{size}
class, which is applied to the wrapping span element of the DropDownList, reflects the value of the Size
option.
The following values are available for the Size
option:
-
Small
—small size (applies thek-picker-sm
class to the wrapping span element) -
Medium
—medium size (applies thek-picker-md
class to the wrapping span element) -
Large
—large size (applies thek-picker-lg
class to the wrapping span element) -
None
—unset.
The following example demonstrates how to set Size
in the declaration of the DropDownList:
@(Html.Kendo().DropDownList()
.Name("categories")
.Size(ComponentSize.Medium)
.HtmlAttributes(new { style = "width:100%" })
.OptionLabel("Select category...")
.DataTextField("CategoryName")
.DataValueField("CategoryId")
.Height(310)
.Template("<span class=\"k-state-default\" style=\"background-image: url(" + Url.Content("~/Content/web/dropdownlist/") + "#:data.CategoryId#.jpg" + ");\" ></span>" +
"<span class=\"k-state-default\" style=\"padding-left: 15px;\"><h3>#: data.CategoryName #</h3></span>")
.ValueTemplate("<span class=\"selected-value\" style=\"background-image: url(" + Url.Content("~/Content/web/dropdownlist/") + "#:data.CategoryId#.jpg" + ");\" ></span>" + "<span>#:data.CategoryName#</span>")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("Overview_Get_Categories", "DropDownList");
});
})
.FooterTemplate("Total number of <strong>#: instance.dataSource.total() #</strong> categories found")
)
The default Size
value is Medium
and it is applied to the wrapping span element through the k-picker-md
class.
<span class="k-dropdownlist k-picker k-picker-md">
</span>
Rounded
The Rounded
option controls the border radius of the DropDownList. The class that corresponds to the Rounded
option is k-rounded-{rounded}
.
The following values are available for the Rounded
option:
-
Small
—small border radius (applies thek-rounded-sm
class to the wrapping span element) -
Medium
—medium border radius (applies thek-rounded-md
class to the wrapping span element) -
Large
—large border radius (applies thek-rounded-lg
class to the wrapping span element) -
Full
—largest border radius (applies thek-rounded-full
class to the wrapping span element) -
None
—unset.
The following example demonstrates how to set Rounded
in the declaration of the DropDownList:
@(Html.Kendo().DropDownList()
.Name("categories")
.Rounded(Rounded.Medium)
.HtmlAttributes(new { style = "width:100%" })
.OptionLabel("Select category...")
.DataTextField("CategoryName")
.DataValueField("CategoryId")
.Height(310)
.Template("<span class=\"k-state-default\" style=\"background-image: url(" + Url.Content("~/Content/web/dropdownlist/") + "#:data.CategoryId#.jpg" + ");\" ></span>" +
"<span class=\"k-state-default\" style=\"padding-left: 15px;\"><h3>#: data.CategoryName #</h3></span>")
.ValueTemplate("<span class=\"selected-value\" style=\"background-image: url(" + Url.Content("~/Content/web/dropdownlist/") + "#:data.CategoryId#.jpg" + ");\" ></span>" + "<span>#:data.CategoryName#</span>")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("Overview_Get_Categories", "DropDownList");
});
})
.FooterTemplate("Total number of <strong>#: instance.dataSource.total() #</strong> categories found")
)
The default Rounded
value is Medium
and it is applied to the wrapping span element through the k-rounded-md
class.
<span class="k-dropdownlist k-picker k-rounded-md">
</span>
FillMode
The FillMode
option controls the way color is applied to the rendered DropDownList. The k-picker-{fillMode}
class, which is applied to the wrapping span element of the DropDownList, reflects the value of the FillMode
option.
The following values are available for the FillMode
option:
-
Solid
—applies thek-picker-solid
class to the wrapping span element -
Flat
—applies thek-picker-flat
class to the wrapping span element -
Outline
—applies thek-picker-outline
class to the wrapping span element -
None
—unset.
The following example demonstrates how to set FillMode
in the declaration of the DropDownList:
@(Html.Kendo().DropDownList()
.Name("categories")
.FillMode(FillMode.Solid)
.HtmlAttributes(new { style = "width:100%" })
.OptionLabel("Select category...")
.DataTextField("CategoryName")
.DataValueField("CategoryId")
.Height(310)
.Template("<span class=\"k-state-default\" style=\"background-image: url(" + Url.Content("~/Content/web/dropdownlist/") + "#:data.CategoryId#.jpg" + ");\" ></span>" +
"<span class=\"k-state-default\" style=\"padding-left: 15px;\"><h3>#: data.CategoryName #</h3></span>")
.ValueTemplate("<span class=\"selected-value\" style=\"background-image: url(" + Url.Content("~/Content/web/dropdownlist/") + "#:data.CategoryId#.jpg" + ");\" ></span>" + "<span>#:data.CategoryName#</span>")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("Overview_Get_Categories", "DropDownList");
});
})
.FooterTemplate("Total number of <strong>#: instance.dataSource.total() #</strong> categories found")
)
The default FillMode
value is Solid
and it is applied to the wrapping span element through the k-picker-solid
class.
<span class="k-dropdownlist k-picker k-picker-solid">
</span>
Rendering
Starting with version R1 2022, the component has a new rendering. For additional information on the decision behind these changes, visit the Components Rendering Overview article.
To review the latest rendering of the component, refer to the HTML specifications in the Kendo UI Themes Monorepo. The tests
folder of the repository contains the rendering for all flavors of the components, providing a clear reference for how their elements are structured. The rendering information can help you customize a component's appearance and behavior by applying custom CSS or JavaScript to suit specific design or functional requirements.