![]() |
Sergey Kornilov admin 11/14/2006 |
Stephan, <input type="Hidden" name="SearchOption" value="Contains"> |
M
|
mmponline author 11/15/2006 |
Sergey |
D
|
Dale 11/15/2006 |
I think the error might be in your line below. You havent closed the input |
M
|
mmponline author 11/16/2006 |
Here is the line with the changes. The <> dissapeared in my effort to bold it. The coding is as shown here, but still gives the error on page message. I'm using the MSAccess feature working on an offline DB. |
![]() |
Sergey Kornilov admin 11/16/2006 |
Stephan, |
M
|
mmponline author 2/10/2007 |
I've tried everything but always get a error on page (javascript message in bottom of browser. |
J
|
Jane 2/12/2007 |
Stephan,
and replace it with this one: <input type="Hidden" name="SearchOption" value="Contains">
<INPUT id=ctlSearchFor onkeydown="e=event; if(!e) e = window.event; if (e.keyCode != 13) return true; e.cancel = true; RunSearch(); return false;" {$search_searchfor}> <INPUT class=button onclick="java script: RunSearch();" type=button value=Search> and replace it with this one: <INPUT id=ctlSearchFor onkeydown="e=event; if(!e) e = window.event; if (e.keyCode != 13) return true; e.cancel = true; frmSearch.SearchFor.value = document.getElementById('ctlSearchFor').value; frmSearch.submit(); return false;" {$search_searchfor}> <INPUT class=button onclick="java script:frmSearch.SearchFor.value=document.getElementById('ctlSearchFor').value; frmSearch.submit();" type=button value=Search>
|
M
|
mmponline author 2/12/2007 |
Thanks! Works 100% |