Jump to content
  • 0

blok prostego wyszukiwania - nie działa enter


krizzu

Question

Witam

 

Tak jak w temacie, po wpisaniu frazy i wciśnięciu enter nic się nie dzieje, przycisk "Szukaj" działa normalnie.

 

Próbowałem w konfiguracji różne warianty, ustawiałem z Ajaxem i bez nie ma różnicy

<div id="search" class="clearfix">
	<form id="tmsearchbox" method="get" action="{$link->getPageLink('search', null, null, null, false, null, true)|escape:'html':'UTF-8'}" >
		<input type="hidden" name="controller" value="search" />
		<input type="hidden" name="orderby" value="position" />
		<input type="hidden" name="orderway" value="desc" />
        <button type="submit" name="submit_search" class="btn btn-default button-search">
			<span>{l s='Search' mod='blocksearch'}</span>
		</button>
		<input class="search_query form-control" type="text" id="search_query" name="search_query" placeholder="{*{l s='Search' mod='blocksearch'}*}" value="{$search_query|escape:'htmlall':'UTF-8'|stripslashes}" />
	</form>
</div>

Z góry dziękuję za jakąś podpowiedź

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

w pliku modules/tmheaderaccount/views/js/front.js

jest kod:
 

$(document).keypress(function(e) {
		if(e.which == 13) {
			e.preventDefault();
			submitLoginFunction();
		}
	});

i to on odpowiada za blokadę wciskania enter, po usunięciu tego fragmentu powinno działać.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...