iconClass String

Defines a CSS class - or multiple classes separated by spaced - which are applied to a span element inside the Button. Allows the usage of custom icons.

Example

<link href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet" />
<button id="button" type="button">Cancel</button>
<script>
    $("#button").kendoButton({
        iconClass: "fa fa-male"
    });
</script>
In this article