• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Filters On return query

Explorer ,
Oct 16, 2006 Oct 16, 2006

Copy link to clipboard

Copied

Hello,

Does anyone here knows how to apply a filter after getting the results of the first run query? there are two issues at hand one is that I first use a form to get the results and then the other is that I can also get the results coming from a link and this results page also has sortable header links. So I need to apply a filter to this results page yet eveytime i try to I get an error on either SQL or a Division by Zero. If anyone know how to accomplish this please provide some code ecxample. I have attached my code so that maybe someone can tell me what is wrong. Thanks in advance.
TOPICS
Advanced techniques

Views

208

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Oct 16, 2006 Oct 16, 2006

Copy link to clipboard

Copied

LATEST
If the page can be accessed by either a form submission or hyperlink, set a local variable and use it in the rest of your code.

if (isdefined("form.var"))
yourvar = form.var;
else if (isdefined("url.var"))
yourvar = url.var;
esle
yourvar = 'some default value'


Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation