themeColor String
(default: 'base')
Controls the main color applied to the button. Valid values are: "base"
, "primary"
, "secondary"
, "tertiary"
, "info"
, "success"
, "warning"
, "error"
, "dark"
, "light"
, "inverse"
, and "none"
. Default value is "base"
.
Example
<button id="splitbutton" type="button">Cancel</button>
<script>
$("#splitbutton").kendoSplitButton({
items:[
{ text: "item 1" },
{ text: "item 2" }
],
themeColor: "dark"
});
</script>