RE: js help -drop down menus

2005-06-09 Thread Tim Laureska
OK... maybe I'll try to break it down then ... Not familiar with CFMODULE - could someone explain what this is doing... cfmodule template=qry_GetSubCategories.cfm FK_tblCategories = #GetCategories.Name# I understand its calling qry_GetSubCategories.cfm, but don't get the 2nd

RE: js help -drop down menus

2005-06-09 Thread Dave Watts
Not familiar with CFMODULE - could someone explain what this is doing... cfmodule template=qry_GetSubCategories.cfm FK_tblCategories = #GetCategories.Name# I understand its calling qry_GetSubCategories.cfm, but don't get the 2nd half (FK_tblCategories =

Re: js help -drop down menus

2005-06-09 Thread Deanna Schneider
cfmodule.. is just another way to call a custom tag. Think of it the same way you would any of the normal cf tags. Any name/value pair passed in is an attribute for the custom tag. Looks to me like this one is saying - get all the subcategories where the main category is getcategories.name. But,