PHP/MySQL,ASP-VBScript,ASP-JavaScript and JSP Server Models . Dreamweaver MX, MX2004, DW8, DW CS3, DW CS4, CS5 and DW CS5.5 compatible
With this extension you can build up to five dependant dropdown menu lists (that is, collection of menu lists where every menu data changes filtered by its parent menus' selected values without reloading the page).
I'll give you an example: You want to build 3 menu lists to select a book, where:
- Menu 1 displays availables genres.
- Menu 2 displays authors for the selected genre.
- Menu 3 displays books by the author selected in menu 2, but only those matching the genre in menu 1.
See the Demo Series->
Sometimes,this system can be more helpful than using a search form with multiple options. For example: If someone makes a search in a database looking for Sci-Fi books written by Shakespeare the result should be 0 records.
With multiple dependant menus, as soon as the user selects "Sci-Fi" in the "genre" menu, Sir William won't appear in the authors' list. It could aslo happen that your shop sells novels by Isaac Asimov but doesn't have his essay books. With this menus, Mr Asimov won't be displayed if the user selects "essay" in the "genre" menu, but will be in the authors' list for "novel".
The main Features are:
- Lightweight: The code is only 3 kb
- Works with 99.9% of browsers: It can even work with Netscape 4.03!
- Allows multiple selections.
- Can mark as selected by default any dynamic value.
- You can keep any predefinided value of your choice.
- It can work even without table relationships: you can build up to 5 menus with data from just one simple table
- Menus can be manipulated in DW: their appearance remains transparent to DW's Property Inspector and even more behaviors can be added to them
- Works with most Server models: It gives support for ASP(VB and JS), PHP/MySQL, PHP ADODB, JSP and ColdFusion.
If you are using ASP.NET, Kevin Marshall at WebXel has the anwser.
- It is compatible with DW MX and DW MX2004

Now, let's see how it all works. The menus use data from a DB that could be like this:
- Table "genres":
- Table "authors":
- Table "books":
- -id_book
- -id_genre (foreign key)
- -id_author (foreign key)
- -book
To display a list of all books with their genre and author's name, the query could be: SELECT books.book,books.id_book,books.id_author,books.id_genre,authors.author,genres.genre FROM tbl_books,tbl_authors,tbl_genres WHERE tbl_books.id_genre=tbl_genres.id_genre AND tbl_books.id_author=tbl_authors.id_author ORDER BY genre ,author,book
This query returns something like:
As you can see, it's quite a common query and looks exacty like those you can use to build a repeat region.
Well, this is all you need to build the three menus! Let's see the steps:
1-Add a form, if you haven't one in your document, and place the cursor where you want the menus to be added
2- Select the PHP/ASP/JSP tab and click the icon in the image.

You will see this window: 
3.- Select the Recordset that contains your query from the list at the top.
4- In the column "List/Menu names" add the names you wish for the menus (they will be the values used for the "name" attribute in the <select> tag). They must be in hierarchical order. In our example, the order is "genre,author,book" (if you wanted to filter by author first, because he has books of different genres, the order woul be "author, genre, book"). Let's add them and leave fields #4 and #5 blank.:
5- Now let's concentrate on the other two columns: In them, we'll select the name/value pair for every menu. For example: the menu "genre" will have the values "genre" and "id_genre". Don't worry about the values for the empty fields.
When you finish steps #4 and #5, you will have something like this

6.- Defining Default Values: Using a default value, you can define which element in the menus should be marked as selected when the page loads. You don't need to define a "default value" for every menu, most of the times only one is needed. For example, if you define a default value for the Books menu, matching an URL parameter, the code is wise enough to guess which genre and author the book is related to (note that in this example we've also added another menu to separate books and CD's and applied a style to the menus using the "Style" dropdown list in the extension window):
The menus, marking as selected the url param "item"

Now, the same menus showing another item:

7.- It's done. Click "OK" and you''ll see this:
7.- Now you can move them, apply a style or whatever you want, as long as you don't change their names, the function call attached to them (onLoad="TCN_reload(this)") and you leave the script code after the three menus.
8.- New in version 1.5.0: You can keep intact the predefined value: it won't be deleted when the menus are updated. Use it to display a title in the menus!!!See a demo of this feature>>
9.- New in version 1.7.0: The extension can manage menus allowing multiple selections.
10.- New in version 2.0.4 (Nov 7, 2011): Unlimited numbers of menus can be created. Edit mode
To remove it, simply delete the menus and the script.
See Demo Series with lots of samples!!>>>
Price: Eur. 7.50 (+-$9.00 USD). The pack includes the extension, a 19-page manual in PDF format, including some useful tips.

|
Comments? 129, so far. Displaying 66 ->70
66.- Dear sirs,
I'm using your extension from 2 yers with success, but now I'm trying to use it for a new application and I'm in trouble.
I would like to show a "repeat region" rows with inside the select box, but I have a JavaScript error message: is it possible to use the extension in this way? If yes, how it can works correctly?
Thank you very much id advance! Bye!
Tecnorama says: Hello and thanks for your kind words!
Can you contact me directly and tell me what you want to do exactly?
67.- Thanks for this script, it works great. I had some initial difficulty with the naming of the menus to show a results page but Andres kindly helped me to correct that. He also helped me to prime the menus through an initial static menu which turned out to be quite easy. Can recommend it to anyone. The support from Andres was very appreciated.
Jan Bylstra
68.- We are creating a new web application. It involves enabling the web user to create mailing lists using selection combinations of city, state and zip code.
I am working on when the user is trying to decide what geography they want to target.
The client will want to select either the first three digits of the zip, all states, some states, or a combination of states and counties and zips.
Do you sell a template of fly-out/drop-down/select box/cascading menus based on states, counties, etc.? How about after the user selects the states, do you have an app that will make the respective counties appear dynamically in another box?
I need the state, county zip tables too.
Thank you,
Shawn Harmon
Tecnorama says: Hi Shawn:
I don't sell an out-of-the-box product for your situation, sorry.
However, I think it's not a hard job if you have a DB with all the data (states and counties), all you need is to get it and apply it to the menus...
69.- Hello - I have a question. Although It sounds dumb, I wanted to make sure before I continue building tables.
I need two drop downs one will contain: "Region" (All Regions - North America - Europe - Asia)
Depending on the selection the next drop down will populate with the "Contries".
So I will only need two tables "Region" and "Country" and the Country table will contain the foreign key identifying the region.
Is this correct? Thank you!
Tecnorama says: Yes, that is the ideal situation.
However, even with a bad DB design, the extension could work: You can even have both regions and countries defined in the same table and the extension would work!!
70.- Coming across this extension at 3am trying to get a project finished was like finding an oasis in a desert. Excellent extension, fantastic price. Thank you!
Matt
www.twoinaroomstudios.com.au
« Previous | 41 - 45 | 46 - 50 | 51 - 55 | 56 - 60 | 61 - 65 | 66 - 70 | 71 - 75 | 76 - 80 | 81 - 85 | 86 - 90 | Next »