<i>
Kendo Panel Barでの表示に問題が<span>
あります。<img>
Kendo Panel Bar で Font Awesome を使用することはできますか?
表示用コード<span>
<div class="demo-section k-content">
<h4>PanelBar with sprites</h4>
<div id="panelbar-sprites"></div>
</div>
<script>
$("#panelbar-sprites").kendoPanelBar({
dataSource: [{
text: "Brazil", spriteCssClass: "brazilFlag", items: [
{ text: "History", spriteCssClass: "historyIcon" },
{ text: "Geography", spriteCssClass: "geographyIcon" }
]
},
{
text: "India", spriteCssClass: "indiaFlag", items: [
{ text: "History", spriteCssClass: "historyIcon" },
{ text: "Geography", spriteCssClass: "geographyIcon" }
]
},
{
text: "Netherlands", spriteCssClass: "netherlandsFlag", items: [
{ text: "History", spriteCssClass: "historyIcon" },
{ text: "Geography", spriteCssClass: "geographyIcon" }
]
}]
});
</script>