ショートカットを非表示/表示したいのですが<p:hotkey>
、jQueryコードで非表示にすることに成功し<p:hotkey>
、同じキーを使用して表示するにはどうすればよいですか?
<script>
jQuery(document).ready(function($) {
$(window).click(function () {
PF('bar').hide();
});
$(window).blur(function () {
PF('bar').hide();
});
});
</script>
xhtml :
<p:notificationBar autoDisplay="true" position="top" effect="slide" widgetVar="bar" style="z-index: 1500;opacity: .98">
<center>
<h:outputText value="Select Bank and press Ctrl , + to add agency" style="color:red;font-size:14px;" /><br/><br/>
<h:outputText value="Click anywhere or press SPACE to hide this bar" style="color:red;font-size:14px;" />
</center>
</p:notificationBar>
<p:hotkey bind="space" onsuccess="PF('bar').hide()"/>