Hello,
I would like to add a Twitter Bootstrap badge to Text off PanelBar? I tried this, but it didn't work:
I'll be grateful for help. In atachments is a screen with this what I mean.
Damian
I would like to add a Twitter Bootstrap badge to Text off PanelBar? I tried this, but it didn't work:
01.
@(Html.Kendo().PanelBar()
02.
.Name("NavigationBar")
03.
.Items(panelBar =>
04.
{
05.
panelBar.Add().Text(@LayoutResource.Actions)
06.
.Items(item =>
07.
{
08.
item.Add().Content("<
a
href=\"#\"><
span
class=\"badge pull-right\">42</
span
>Home</
a
>");
09.
});
10.
}
11.
)
12.
)
Damian