I have a button that I want to have a FontAwesome icon before the text of Change:
<
button
class
=
"k-button"
type
=
"button"
id
=
"setFile"
>Change</
button
>
Right now (in Chrome, on the Desktop) I find that I can do this:
$("#setFile").kendoButton({
icon: "search"
});
And get one of the built in icons. But am already use the FA icons in other parts of the page, so they are loading properly. But I don't get your documetation on adding the FA icons. I tried this, but it was a blank icon: (Maybe it is there, but I have a MetroBlack theme and perhaps it is black?)
$("#setFile").kendoButton({
spriteCssClass: "fa-car" /* also tried "fa fa-car" */
});