I am trying to achieve the following, though with a button.
<h:outputLink value="/admin/category/read">
Cancel
<f:param name="cat" value="" />
<f:param name="subcat" value="" />
</h:outputLink>
I have tried using h:button
, though the outcome
property does not work since /admin/category/read
is not a specified navigation-case.
How to use a button as link, without having to use a navigation-case or server side method?