[
https://issues.apache.org/jira/browse/TOBAGO-317?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12480061
]
Arvid Hülsebus commented on TOBAGO-317:
---------------------------------------
The confirmation facet is currently not support for <tc:link>. You will get a
warning in HtmlRendererUtil:760 - Facet 'confirmation' is not supported for
this type of button.
We could change the else branch to
onclick = "confirm('" + confirmation.getValue() + "')";
This would do the trick for links. Are there any side effects?
> tc:link action ignored when onclick is set
> ------------------------------------------
>
> Key: TOBAGO-317
> URL: https://issues.apache.org/jira/browse/TOBAGO-317
> Project: MyFaces Tobago
> Issue Type: Bug
> Components: Core
> Affects Versions: 1.0.10
> Reporter: Dennis Kieselhorst
>
> tc:link with onclick:
> <tc:link action="#{mmaController.deleteItem}" onclick="confirm('Wirklich
> löschen?')" actionListener="#{mmaController.selectItem}">
> result: <a href="#" onclick="confirm('Wirklich löschen?')"
> class="tobago-link-default " id="page:_idJsp31:3:_idJsp40"
> name="page:_idJsp31:3:_idJsp40">
> tc:link without onclick:
> <tc:link action="#{mmaController.deleteItem}"
> actionListener="#{mmaController.selectItem}">
> result: <a href="javascript:Tobago.submitAction('page:_idJsp31:3:_idJsp40',
> true);" class="tobago-link-default " id="page:_idJsp31:3:_idJsp40"
> name="page:_idJsp31:3:_idJsp40">
> should be:
> <a href="javascript:Tobago.submitAction('page:_idJsp31:3:_idJsp40', true);"
> onclick="confirm('Wirklich löschen?')" class="tobago-link-default "
> id="page:_idJsp31:3:_idJsp40" name="page:_idJsp31:3:_idJsp40">
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.