![]() |
Sergey Kornilov admin 2/9/2010 |
You can add a checkbox to the form using Visual Editor in HTML mode: <input type="checkbox" name="include" value="yes">Include closed?
if ($_POST["include"]=="yes") |
P
|
paulwebb author 2/22/2010 |
Thanks - I've now learnt how to add check box (and other types) to my form. |
P
|
paulwebb author 2/26/2010 |
Looking for some help here guys! |
![]() |
Sergey Kornilov admin 2/27/2010 |
Request.Form("include") is a proper way access form element named 'include'. |
P
|
paulwebb author 2/27/2010 |
I understood that already - how do I keep this in the search on list form? |
![]() |
Sergey Kornilov admin 2/27/2010 |
Request.Form("include") will be accessible in all list page events. |
P
|
paulwebb author 3/7/2010 |
I need to frame this problem more precisely: |
![]() |
Sergey Kornilov admin 3/8/2010 |
Request collection is available in all events. If you are not able to access Request.Form("include") variable you probably placing this check box at the wrong place. It needs to be inside the search form. |