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
<input id="combobox"/>
<script>
$("#combobox").kendoComboBox({
dataSource: [
{ id: 1, name: "Apples" },
{ id: 2, name: "Oranges" }
],
dataTextField: "name",
dataValueField: "id",
fillMode: "flat"
});
</script>