I want to convert the following tag into JSFs h:commandLink, but I'm having trouble with the data-toggle attribute.
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
This is what I converted it into:
<h:commandLink styleClass="dropdown-toggle" data-toggle="dropdown">
As far as I'm concearned, the commandLink is rendered as a HTML -tag. But the dropdown menu is unusable, after rewriting into JSF. Any ideas?
Greetings, Beejay