AJAX wanted to show details but not in searchbox on list page |
5/29/2007 5:12:50 AM |
PHPRunner General questions | |
Hello support, |
|
J
|
Jane 5/29/2007 |
Uwe, <INPUT id=ctlSearchFor {if $useAJAX} autocomplete="off" onkeydown="return listenEvent(event,this,'ordinary');" onkeyup="searchSuggest(event,this,'ordinary');" {else} onkeydown="e=event; if(!e) e = window.event; if (e.keyCode != 13) return true; e.cancel = true; RunSearch(); return false;" {/if} {$search_searchfor}> and replace it with this one: <input type=text size=20 onkeydown="e=event; if(!e) e = window.event; if (e.keyCode != 13) return true; e.cancel = true; RunSearch(); return false;" id="ctlSearchFor" {$search_searchfor}> |