function textoPermitido(c){var b=PF("idcMainCustom").jq.val();key=c.keyCode||c.which;tecla=c.key.toLowerCase();especiales=[8,37,39,46];for(var a in especiales){if(key===especiales[a]){if(tecla.length>1){return true}}}if(!(b.indexOf(tecla)===-1)){return true}return false}function textoPermitidoConEnter(c){var b=PF("idcMainCustomEnter").jq.val();key=c.keyCode||c.which;tecla=c.key.toLowerCase();especiales=[8,37,39,46,13];for(var a in especiales){if(key===especiales[a]){if(tecla.length>1){return true}}}if(!(b.indexOf(tecla)===-1)){return true}return false}var currentEvent;$(document).ready(function(){PrimeFaces.widget.ContextMenu.prototype.show=function(g){$(document.body).children(".ui-contextmenu:visible").hide();if(g){currentEvent=g}var f=$(window),d=g.pageX,c=g.pageY,b=this.jq.outerWidth(),a=this.jq.outerHeight();if((d+b)>(f.width())+f.scrollLeft()){d=d-b}if((c+a)>(f.height()+f.scrollTop())){c=c-a}if(this.cfg.beforeShow){this.cfg.beforeShow.call(this)}this.jq.css({left:d,top:c,"z-index":++PrimeFaces.zindex}).show();g.preventDefault()}});