Skip to content

Instantly share code, notes, and snippets.

@hoangbits
Created March 13, 2017 05:26
Show Gist options
  • Save hoangbits/debe5a9b6bbde994bdf005c4b3852cfe to your computer and use it in GitHub Desktop.
Save hoangbits/debe5a9b6bbde994bdf005c4b3852cfe to your computer and use it in GitHub Desktop.
<h:form>
<h:commandButton value="Deposit"
action="#{nganLuongBean.sentRequest}">
<f:ajax render="popup" />
</h:commandButton>
<h:panelGroup id="popup">
<ui:fragment rendered="#{not empty nganLuongBean.link_checkout}">
<script>
window
.open('#{nganLuongBean.link_checkout}',
'_self',
'width=500,height=500');
</script>
</ui:fragment>
</h:panelGroup>
</h:form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment