Newbies Willem Schildkamp Posted June 27, 2001 Newbies Posted June 27, 2001 When making a search-form, i am unable to allow the user to choose from a category by using a drop-down list, and then pressing submit (or whatever) to see all records in that category. How do i solve this? Furthermore, i have a problem with controlling the size (max char) of such a dropdown list. When using the <select option...> i am unable to set the max length of the field.. -( Hope you can help..
Anatoli Posted June 27, 2001 Posted June 27, 2001 Field will take the longest text as size. That is HTML.
MeltDown Posted June 28, 2001 Posted June 28, 2001 quote: Originally posted by Willem Schildkamp: When making a search-form, i am unable to allow the user to choose from a category by using a drop-down list, and then pressing submit (or whatever) to see all records in that category. How do i solve this? The following works in FMP 5: <form blah blah blah... <Select Name="NameofSearchField" size=1> <Option value="*">All Categories</Option> <Option value="1">Category 1</Option> <Option value="2">Category 2</Option> <Option value="3">Category 3</Option> </Select> <input type="submit" name="-find" value="Find Selected Category"> </form>
Recommended Posts
This topic is 8618 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now