How to use Spry Tabbed Panels?

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default How to use Spry Tabbed Panels?

    Hello, I made spry tabbed panels but I'd like them to work on a rollover or
    mouseover instead of a click. Here's what I tried but it didn't actually do
    anything. Do I have to edit the .js file?


    <div id="TabbedPanels1" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab" tabindex="0"
    onmouseover="TabbedPanels1.showPanel(this);">Our Program</li>
    <li class="TabbedPanelsTab" tabindex="0"
    onmouseover="TabbedPanels1.showPanel(this);">Our Home</li>
    </ul>

    jcafaro10 Guest

  2. Similar Questions and Discussions

    1. IE problem with tabbed panels in div with overflow
      Hi there, I have a tabbed panel which works fine by itself in a body tag. If I put it into a div with overflow set and I move the contents up the...
    2. Spry Tabbed Panels overwritting popup menu in IE6 andIE7 but display fine in Firefox
      I am new to Spry and Dreamweaver CS3 and would appreciate any help anyone can give. I am having an issue with Spry Tabbed Panels appearing above a...
    3. Spry Tabbed Panels
      Can contribute edit spry tabbed panel content?
    4. Tabbed Panels beneath the Content
      If you want the tabs below the content instead of on top or on the left for whatever reason here is how I've done it. First of all, switch the...
    5. How do i hyperlink between spry tabbed panels
      OK, i'm using the spry tabbed panels in Dreamweaver CS3. I have 9 tabs and the idea is that the user can link to content in 8 of the tabs from the...
  3. #2

    Default Re: How to use Spry Tabbed Panels?

    jcafaro10 wrote:
    > Hello, I made spry tabbed panels but I'd like them to work on a rollover or
    > mouseover instead of a click. Here's what I tried but it didn't actually do
    > anything. Do I have to edit the .js file?
    I believe that you do have to edit the .js file to accomplish what you're looking for. I think that a couple of folks have already done this and have posted a thread/response in the Spry forum, so I'd suggest searching that forum for mouseover or related terms:
    [url]http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72&catid=602[/url]


    --
    Danilo Celic
    | [url]http://blog.extensioneering.com/[/url]
    | WebAssist Extensioneer
    | Adobe Community Expert
    danilocelic AdobeCommunityExpert Guest

  4. #3

    Default Re: How to use Spry Tabbed Panels?

    Wanted to do the same. Came looking for this answer sort of. My "hack was to
    just do JS mouseover's. I didn't edit the Spry tabbed panels .js. Rather
    included them in the code ( which I was trying to avoid seeing as I had a nice
    pretty CSS to do my hovers. So I have messy Javascript code that isn't pretty.
    But it works! Let me know if you find a "cleaner solution". But until then,
    this worked for me. Below is an example that allowed me to create my own tabbed
    panels. Hope that helps.

    <div id="TabbedPanels1" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab" tabindex="0"><div id="box1"><img
    src="Image1.jpg" alt="" name="Image1" width="268" height="138" id="Image1"
    onMouseOver="MM_swapImage('Image1','','RolloverIma ge.jpg',1)"
    onMouseOut="MM_swapImgRestore()"></div>
    </li>

    winthrup7 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139