fillMode String(default: "solid")

Sets a value controlling how the color is applied. Can also be set to the following string values:

  • "none"
  • "solid"
  • "flat"
  • "outline"

Example - sets the fillMode

<select id="dropdown">
    <option>Item1</option>
    <option>Item2</option>
</select>
<script>
  $("#dropdown").kendoDropDownList({
    filter: "contains",
    fillMode: "flat"
  });
</script>
In this article