fixed bug in posting Find forms
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
//
|
||||
// The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
|
||||
// for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
||||
// Copyright (C) 2001 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
||||
// Copyright (C) 2001-02 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
||||
//
|
||||
// Contributor(s):
|
||||
|
||||
@@ -66,7 +66,10 @@ view.offset = rinput.getParameterInt("ofs",0);
|
||||
view.findCount = rinput.getParameterInt("fcount",-1);
|
||||
|
||||
// Adjust the search return offset based on the command button click.
|
||||
if (rinput.isImageButtonClicked("search"))
|
||||
// EJB 1/18/2002 - N.B.: some browsers can POST the "Search" form without triggering the
|
||||
// "Search" button (by just pressing Enter), so we include the hidden "newsearch" parameter
|
||||
// to distinguish between the two
|
||||
if (rinput.isImageButtonClicked("search") || (rinput.getParameterInt("newsearch",0)==1))
|
||||
view.offset = 0;
|
||||
else if (rinput.isImageButtonClicked("previous"))
|
||||
view.offset = Math.max(view.offset - view.maxResults,0); // go backwards
|
||||
|
||||
Reference in New Issue
Block a user