House of Fusion
Search over 2,500 ColdFusion resources here
  
Home of the ColdFusion Community

Mailing Lists
Home /  Groups /  ColdFusion Talk (CF-Talk)

accordion css control?

  << Previous Post |  RSS |  Tree View |  Sort Oldest First |  Subscribe to this Group Next >> 

accordion css control?

<A HREF="http://www.indiankey.com/mxajax/examples/mxRicoAccordion1.cfm" James Holmes 10/04/2006 01:30 AM
Rey Bango wrote Mark Henderson 10/03/2006 10:01 PM
prototype aka prototype.js is a JavaScript library for multi-browser support Teddy Payne 10/03/2006 01:32 PM
Forgive my ignorance, but what would the drawback be to "relying on Ray Champagne 10/03/2006 01:25 PM
The guys at Mad4Milk have a new version which doesn't rely on Prototype. Rey Bango 10/03/2006 01:16 PM
Just for a quick and dirty example here on how to use it: Peterson, Chris 10/03/2006 01:12 PM
Yeah, good set that, there are also a few effects in the script.aculo.us Robertson-Ravo, Neil (RX) 10/03/2006 01:07 PM
The one included in Spry is worth a look: Massimo Foti 10/03/2006 01:07 PM
Wow, that thing is pretty damned fast. Ray Champagne 10/03/2006 01:02 PM
Check this one out: Peterson, Chris 10/03/2006 12:56 PM
I like this - easy to customize and xml source makes the hierarchy really Dave Francis 10/03/2006 12:03 PM
No IDE needed, and free, too.  Now we're talking... :) Ray Champagne 10/03/2006 11:40 AM
Hrm, and it only works with DreamWeaver?  I'm liking that one less Ray Champagne 10/03/2006 11:38 AM
Yea, that would be a good example.  I'll look into it further.  Ray Champagne 10/03/2006 11:36 AM
To follow up on this, I have used jAccordion by Joe Reinhart in the past, Crow T Robot 10/03/2006 11:35 AM
Ray Champagne wrote: Jim Wright 10/03/2006 11:32 AM
Like this? Robert Redpath 10/03/2006 11:31 AM
Does anyone have any good examples of an accordion css control?  I Ray Champagne 10/03/2006 11:19 AM

10/04/2006 01:30 AM
Author: James Holmes Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255340 http://www.indiankey.com/mxajax/examples/mxRicoAccordion1.cfm > Yea, that would be a good example.  I'll look into it further.  I'd still > love some more examples that others have used so I can present more than one > solution.... -- CFAJAX docs and other useful articles: http://www.bifrost.com.au/blog/
10/03/2006 10:01 PM
Author: Mark Henderson Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255307 Rey Bango wrote > The guys at Mad4Milk have a new version which doesn't rely on > Prototype. > You can catch it here: > > http://mootools.net/ The moo menu is pretty damned good & one of the best you'll get for free in my opinion. Here's another one that's up there: http://onlinetools.org/tools/dom-tree-menu-puredom/   This guy is heavily into unobtrusive JS and most of his stuff is pretty standards compliant. That was just for the tree menu, but Chris has also done something similar to the moo menu called domCollapse: http://www.wait-till-i.com/index.php?p=72 And last but not least: http://www.kryogenix.org/code/browser/aqlists/ HTH Mark -- This message has been scanned for viruses and dangerous content by ISPNZ's automated virus detection system, and is believed to be clean.
10/03/2006 01:32 PM
Author: Teddy Payne Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255220 prototype aka prototype.js is a JavaScript library for multi-browser support on httprequest calls used commonly for AJAX. Teddy ----- Excess quoted text cut - see Original Post for more -----
10/03/2006 01:25 PM
Author: Ray Champagne Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255216 Forgive my ignorance, but what would the drawback be to "relying on Prototype".  (in other words, I have no idea what prototype is). ----- Excess quoted text cut - see Original Post for more -----
10/03/2006 01:16 PM
Author: Rey Bango Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255213 The guys at Mad4Milk have a new version which doesn't rely on Prototype. You can catch it here: http://mootools.net/ Rey... Peterson, Chris wrote: ----- Excess quoted text cut - see Original Post for more -----
10/03/2006 01:12 PM
Author: Peterson, Chris Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255212 Just for a quick and dirty example here on how to use it: Include the necessary js files:   <script type="text/javascript" src="js/prototype.lite.js"></script>   <script type="text/javascript" src="js/moo.fx.js"></script>   <script type="text/javascript" src="js/moo.fx.pack.js"></script>   <script type="text/javascript" src="js/niftycube.js"></script> Stick something like this in a javascript:   <script type="text/javascript">         window.onload = function(){         //we define two arrays, containing our toggles and divs.     var myDivs = document.getElementsByClassName('stretcher');     var myLinks = document.getElementsByClassName('stretchtoggle');       //then we create the effect.     myAccordion = new fx.Accordion(myLinks, myDivs, {opacity: true});     // I stuck nifty corners into the mix, they work together and look perfect     Nifty("li.stretchtoggle h3","top");     Nifty("div.stretcher","bottom");     Nifty("td.navCell","");     Nifty("td.searchResults","");     Nifty("div#stopoff","big");     Nifty("div#headingRow","transparent");       // Show the 1st accordian as open if you want too by default     myAccordion.showThisHideOpen(myDivs[0]);     </script> Then create your data like this: <ul>   <li class="stretchtoggle">They would click on this text to open it     <div class="stretcher">       This would be opened after they click     </div>   </li>   <li class="stretchtoggle">They would click on this text to open it (2nd link)     <div class="stretcher">       This would be opened after they click     </div>   </li> </ul> Have fun, Chris
10/03/2006 01:07 PM
Author: Robertson-Ravo, Neil (RX) Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255210 Yeah, good set that, there are also a few effects in the script.aculo.us library.  In fact moofx may also use stuff from that library.. Would have to check. "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540.  It contains information which is confidential and may also be privileged.  It is for the exclusive use of the intended recipient(s).  If you are not the intended recipient(s) please note that any form of distribution, copying or use of this communication or the information in it is strictly prohibited and may be unlawful.  If you have received this communication in error please return it to the sender or call our switchboard on +44 (0) 20 89107910.  The opinions expressed within this communication are not necessarily those expressed by Reed Exhibitions." Visit our website at http://www.reedexpo.com Check this one out: http://moofx.mad4milk.net/ Its fast and easy to code into. Chris No IDE needed, and free, too.  Now we're talking... :) > Importance: High > > Ray Champagne wrote: > > Does anyone have any good examples of an accordion css control?  I basically > > need to have 3 sections be completely collapsed on page load, then "open" > > when clicked on, and have linked content underneath that pushes any content ----- Excess quoted text cut - see Original Post for more -----
10/03/2006 01:07 PM
Author: Massimo Foti Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255211 The one included in Spry is worth a look: http://labs.adobe.com/technologies/spry/articles/accordion_overview/ ----------------------------   Massimo Foti Tools for ColdFusion and Dreamweaver developers: http://www.massimocorner.com ----------------------------  
10/03/2006 01:02 PM
Author: Ray Champagne Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255209 Wow, that thing is pretty damned fast. ----- Excess quoted text cut - see Original Post for more -----
10/03/2006 12:56 PM
Author: Peterson, Chris Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255207 Check this one out: http://moofx.mad4milk.net/ Its fast and easy to code into. Chris No IDE needed, and free, too.  Now we're talking... :) > Importance: High > > Ray Champagne wrote: > > Does anyone have any good examples of an accordion css control?  I basically > > need to have 3 sections be completely collapsed on page load, then "open" > > when clicked on, and have linked content underneath that pushes any content ----- Excess quoted text cut - see Original Post for more -----
10/03/2006 12:03 PM
Author: Dave Francis Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255201 I like this - easy to customize and xml source makes the hierarchy really readable http://www.devx.com/getHelpOn/Article/11874/0/page/1 No IDE needed, and free, too.  Now we're talking... :) > Importance: High > > Ray Champagne wrote: > > Does anyone have any good examples of an accordion css control?  I basically > > need to have 3 sections be completely collapsed on page load, then "open" > > when clicked on, and have linked content underneath that pushes any content ----- Excess quoted text cut - see Original Post for more -----
10/03/2006 11:40 AM
Author: Ray Champagne Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255193 No IDE needed, and free, too.  Now we're talking... :) > Importance: High > > Ray Champagne wrote: > > Does anyone have any good examples of an accordion css control?  I basically > > need to have 3 sections be completely collapsed on page load, then "open" > > when clicked on, and have linked content underneath that pushes any content ----- Excess quoted text cut - see Original Post for more -----
10/03/2006 11:38 AM
Author: Ray Champagne Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255192 Hrm, and it only works with DreamWeaver?  I'm liking that one less already... ----- Excess quoted text cut - see Original Post for more ----- basically > need to have 3 sections be completely collapsed on page load, then "open" > when clicked on, and have linked content underneath that pushes any content ----- Excess quoted text cut - see Original Post for more ----- play ----- Excess quoted text cut - see Original Post for more -----
10/03/2006 11:36 AM
Author: Ray Champagne Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255191 Yea, that would be a good example.  I'll look into it further.  I'd still love some more examples that others have used so I can present more than one solution.... ----- Excess quoted text cut - see Original Post for more ----- basically > need to have 3 sections be completely collapsed on page load, then "open" > when clicked on, and have linked content underneath that pushes any content ----- Excess quoted text cut - see Original Post for more ----- play ----- Excess quoted text cut - see Original Post for more -----
10/03/2006 11:35 AM
Author: Crow T Robot Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255190 To follow up on this, I have used jAccordion by Joe Reinhart in the past, but he no longer supports it, and it has a quirk that won't work for my client (one pane always is open when the page loads).  You can see the demo I whipped up here: http://tinyurl.com/qhudp > Importance: High > > Does anyone have any good examples of an accordion css control?  I basically > need to have 3 sections be completely collapsed on page load, then "open" > when clicked on, and have linked content underneath that pushes any content ----- Excess quoted text cut - see Original Post for more ----- play ----- Excess quoted text cut - see Original Post for more -----
10/03/2006 11:32 AM
Author: Jim Wright Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255189 Ray Champagne wrote: > Does anyone have any good examples of an accordion css control?  I basically > need to have 3 sections be completely collapsed on page load, then "open" > when clicked on, and have linked content underneath that pushes any content > under the control downward.   > I think this is what you are looking for... http://www.dynamicdrive.com/dynamicindex1/switchmenu.htm I've used that one before, and it is pretty easy to customize.
10/03/2006 11:31 AM
Author: Robert Redpath Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255188 Like this? http://www.projectseven.com/products/menusystems/tmm/index.htm ________________________________ Sent: Tue 10/3/2006 11:19 AM To: CF-Talk Subject: accordion css control? Does anyone have any good examples of an accordion css control?  I basically need to have 3 sections be completely collapsed on page load, then "open" when clicked on, and have linked content underneath that pushes any content under the control downward. I can explain more/better if I need to. Also, I know I could probably build this on my own, but I just don't have that kind of time to work out the kinks, so one that is just a plug and play would be awesome.  I don't mind paying if need be. Thanks, Ray
10/03/2006 11:19 AM
Author: Ray Champagne Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:48057#255185 Does anyone have any good examples of an accordion css control?  I basically need to have 3 sections be completely collapsed on page load, then "open" when clicked on, and have linked content underneath that pushes any content under the control downward.   I can explain more/better if I need to. Also, I know I could probably build this on my own, but I just don't have that kind of time to work out the kinks, so one that is just a plug and play would be awesome.  I don't mind paying if need be. Thanks, Ray
<< Previous Thread Today's Threads Next Thread >>

Search cf-talk

May 24, 2012

<<   <   Today   >   >>
Su Mo Tu We Th Fr Sa
     1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31     

Designer, Developer and mobile workflow conference