Hey guys,
we're using the panelbar as navigation on our website. Every item has a link behind which you can simply access by clicking on the item.
Since we have to check for accessibility we're in trouble with the panelbar because toggling the item with keyboard doesn't toggle the link/action behind it.
Do you have a best practice how to implement such a function?
@(Html.Kendo().PanelBar()
.Name("panelbar")
.ExpandMode(PanelBarExpandMode.Multiple)
.Items(panelbar =>
{
panelbar.Add().Text("Angebote")
.Items(angebot =>
{
angebot.Add().Text("Anlegen").Action("Create", "Offer");
angebot.Add().Text("Bearbeiten").Action("Update", "Offer");
angebot.Add().Text("Löschen");
});
})
)