Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
I am missing Dialog forum. Maybe you should create it and then move this topic.
How can I add icon or even better define classes for icon in dialog actions?
$(
"#dialog"
).kendoDialog({
actions: [{
text:
"OK"
,
spriteCssClass:
"fa fa-check"
action:
function
(e){
},
}]
});
Hello Matjaž,
The action buttons inside the Dialog accept HTML, so to add an icon class, you can do something like this:
http://dojo.telerik.com/ABiBu/6
Pass a span with the font icon class as the text property of the action. There are some built-in Kendo UI icons and their corresponding CSS classes that are listed at: http://demos.telerik.com/kendo-ui/styling/icons
I hope this answers your question.