This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// DEFINA UM ID PARA O BOTÃO | |
$btn_pesquisar->id = 'btn_pesquisar'; | |
// ROTINA JAVASCRIPT PARA DÁ O FOCO OU CLICAR NO BOTÃO AO PRESSIONAR O ENTER | |
TScript::create(' | |
$(document).keyup(function(e) { | |
if(e.which == 13) $("#btn_pesquisar").click(); | |
}); |