Colapsible Panel open close with delay ?

Hi
first of all i really dig spry, even thou i nearly cant read
that javascript stuff ;-) ... keep it up spry-team
First an image which illustrates my idea better than my
limited english.
http://www.defcon-x.de/mogh_forum_files/badge_hover.png
So i think it should be doable ... with an acordion or
colapsable panel effekt ,.. still i cant figure put how to hover it
and of course this layout needs a additional timer (3sec lets say)
to slide in again when the mouse leaves the area
also what I am worrying about is that the hover area moves so
the apearing area has to react to the hover also to keep itself
open ...
I found this in the forum but this is deffinetly out of my
codereading skills, and its about tabbed panels anyway, sorry.
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadid =1372067&highlight_key=y&keyword1=hover
Thanks in advance ...
regards mogh

I searched some more and even tinkered with the
javascriptcode ..
I read in the forums that an acodion can not be closed by
mouseout so an colapsible panel is the right directon to go ..
i edited the code (SpryCollapsiblePanel.js) so that the
mousehover does the same as an mousclick ..
//Spry.Widget.CollapsiblePanel.addEventListener(tab, "click",
function(e) { return self.onTabClick(e); }, false);
Spry.Widget.CollapsiblePanel.addEventListener(tab,
"mouseover", function(e) { return self.onTabClick(e); }, false);
Spry.Widget.CollapsiblePanel.addEventListener(tab,
"mouseover", function(e) { return self.onTabMouseOver(e); },
false);
//Spry.Widget.CollapsiblePanel.addEventListener(tab,
"mouseout", function(e) { return self.onTabMouseOut(e); }, false);
(don't forget to add some mousout stile removments (ad the
top of the javascript file) to make ist work nicely)
anyway I am still unsure if I am on the right track or just
messing around.
now to the delay ...
I found this:
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadid =1357284&highlight_key=y&keyword1=delay
but i couldn't manage to make it work with my
CollapsiblePanel; I tried to implement the unobstructive routine
but again this is again out of my league ...
hope it helps someone to chim in ,,,

Similar Messages

  • Collapsible Panel Open/Close

    Currently my tab text "See What Everyone's Talking About"
    will open and close the panel. I would like to assign an image
    inside the panel to also close the panel after it has opened. So,
    essentially the current tab would open and close the panel and
    clicking on an image in the panel would close the panel. Here's the
    code for reference. Any help would be appreciated!
    <div id="CollapsiblePanel1" class="CollapsiblePanel">
    <div class="CollapsiblePanelTabHover">
    <a href="##" style="font-weight:bold;
    text-transform:uppercase; margin:0; padding:0;
    font-size:0.875em;">See What Everyone's Talking About</a>
    </div>
    <div class="CollapsiblePanelContent">
    <p>Select Your Preferred Region</p>
    (I want to insert an image here that would close the panel
    here)
    <ul>
    <li>&#8250;&#8250; <a
    href="##">australia</a></li>
    <li>&#8250;&#8250; <a
    href="##">brazil</a></li>
    <li>&#8250;&#8250; <a
    href="##">canada</a></li>
    <li>&#8250;&#8250; <a
    href="##">china</a></li>
    <li>&#8250;&#8250; <a
    href="##">germany</a></li>
    <li>&#8250;&#8250; <a
    href="##">mexico</a></li>
    <li>&#8250;&#8250; <a
    href="##">russia</a></li>
    <li>&#8250;&#8250; <a
    href="##">spain</a></li>
    <li>&#8250;&#8250; <a href="##">united
    kingdom</a></li>
    <li>&#8250;&#8250; <a href="##">united
    states</a></li>
    </ul>
    <br />
    </div>
    <script type="text/javascript">
    <!--
    var CollapsiblePanel1 = new
    Spry.Widget.CollapsiblePanel("CollapsiblePanel1",
    {contentIsOpen:false});
    //-->
    </script>

    Did u check out the sample codes? It includes a preview how u
    can close and open a panel with a link;
    http://labs.adobe.com/technologies/spry/samples/collapsiblepanel/collapsible_panel_sample. htm

  • One link to open/close all _accordion_ panels

    I am aware that collapsible panels have group feature and you can open and close all panels by wrapping the individual panels within a group.
    Is there a way to open all panels in an accordion widget?

    Open all, no.
    Close all, yes (set panel to -1, with the useFixedHeights:false option)

  • Pages comments panel open with every document

    For whatever reason, Pages keeps opening up the comment panel on the left side of my Pages documents when I open them, even when there isn't a single comment added to the Pages document. I have to manually close the comment box and then save the file, for every file, to remedy the problem.
    Any ideas?

    Nope. I just opened a document from March 2012 to verify. It opens the document with comments panel open, but I never used the comments panel on the document.
    I didn't start using comments until a couple weeks ago, which is when I started having this problem.
    It does not, however, do so with every document. There seems to be a specific reason why some documents have this problem, and some do not. But I do not see the pattern.

  • Checkbox (only) controls open/close function of collapsible panel

    I have a form with several collapsible panels in it, each
    with a checkbox in the tab area, like so:
    <div id="CollapsiblePanel1" class="CollapsiblePanel">
    <div class="CollapsiblePanelTab" tabindex="0">
    <input type="checkbox" name="checkbox_array[]"
    value="i_need_this" />
    I need this!
    </div>
    <div
    class="CollapsiblePanelContent">Content</div>
    </div>
    My question is this: Is there any way to control the
    open/close function of the collapsible panel using only the
    checkbox located within the tab? Ideally, the panel would still
    change based on hover, focus, etc.
    In advance, let me just say thank you so much for any help
    you might provide with this.
    - Devin

    Yessir, it is possible. I was struggling with something
    similar myself, and got it figured out. You'll need to do this in
    two steps.
    First, you should disable the existing listener, so that when
    you click the tab area nothing happens. You'll need to wade into
    your SpryCollapsiblePanel.js file and comment out a line. Somewhere
    around line 191 you'll find a function called
    "Spry.Widget.CollapsiblePanel.prototype.attachPanelHandlers".
    Within that function, around line 198, you'll find the following
    code:
    quote:
    Spry.Widget.CollapsiblePanel.addEventListener(tab, "click",
    function(e) { return self.onTabClick(); }, false);
    Comment it out by typing a double forward slash (//) at the
    beginning of the line like this:
    quote:
    // Spry.Widget.CollapsiblePanel.addEventListener(tab,
    "click", function(e) { return self.onTabClick(); }, false);
    If you test your code at this point, you'll discover that
    you've broken the collapsible panel functionality. The panel won't
    open. Now you need to set up your checkbox to trigger the
    open/close functions. To do this, you just need to add an onclick
    event to your checkbox like this:
    quote:
    <input type="checkbox" name="checkbox_array[]"
    value="i_need_this"
    onclick="CollapsiblePanel1.onTabClick();" />
    The onTabClick() function simply checks if the panel is
    already open, and calls either the open() or close() function as
    appropriate. If you needed to, you could check whether the checkbox
    is checked or not, then call the open() or close() functions
    directly.
    Please note that in modifying your SpryCollapsiblePanel.js
    file like this, you'll be modifying the behavior of all collapsible
    panels built using that file. If you need standard collapsible
    panels as well, you'll need to add the same onclick event to your
    tab panels manually.

  • Open Director with specific panel set

    Hi,
    It is possible to set the default configuration  of Director?
    In other words it is possible open Director with specific panel set?
    If yes how?
    Thanks.

    1. First, get the layout you want.
    2. Go to
    Edit > Preferences > General....
    3. Click the checkbox - Save Window Positions On Exit.
    4. Exit Director.
    5. Open Director and go back to the General Preferences and uncheck the Save Windows Position property.
    Now when you close Director, it won't save the positions and will used the last saved setup.
    Dean

  • Firefox 4.0.1 closes with no error message. When I restore the session I get: Well, this is embarrassing. Firefox is having trouble recovering your windows and tabs. This is usually caused by a recently opened web page. What can I do?

    After opening certain websites, pogo, firefox 4.0.1 closes with no error message. When I restore the session I get: Well, this is embarrassing. Firefox is having trouble recovering your windows and tabs. This is usually caused by a recently opened web page.
    I have had this problem before and had to reinstall an earlier version of firefox.
    The error console has a long list of errors, many of them end with: does not implement nsIObserver. Is there a way to send the information on the error console to firefox support?
    Redownloading Firefox 4.0 will fix my problem until I either close firefox or turn off my computer. The problem recurs when I open firefox again.

    See:
    * http://kb.mozillazine.org/Firefox_crashes
    * https://support.mozilla.com/kb/Firefox+crashes
    It is also possible that there is a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/sessionstore.js
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • Unable to close open apps with double clicking the button and when I tap screen does not respond?

    Cannot not close open apps with double clicking the button Since downloading iOS8.

    What happens when you try? Does double clicking the ?home button bring up the Task Bar of recently used apps? If so what happens when you flick up on the preview screen for the app you want to close?
    To quit an app double click the Home button to reveal the row of recently used apps. Flick up on the page preview and it will fly away and disappear. That quits the app.

  • Every time i open an app it will close with in a few min and wont open at all if music is running in the backround. what can i do about this?

    every time i open an app it will close with in a few min and wont open at all if music is running in the backround. what can i do about this?

    See:
    iOS: Troubleshooting applications purchased from the App Store
    Contact the developer/go to their support site if only one app.
    Restore from backup. See:
    iOS: How to back up
    Restore to factory settings/new iPod

  • ITunes opens with delay

    Hi,
    Well here's my problem, that i've had since the beginning using iTunes:
    The program opens with delay, ranging from 30 seconds up to 10 minutes, sometimes even more. Sometimes, it will just not open at all...
    I have tried to reinstall iTunes, I have tried to open it after having shut down all my antivirus or adaware type programs, but it won't help.
    Does anyone have a solution for me? Pleeeeaaase.. I'm just not too good at sitting patiently in front of my screen, waiting that a program will feel fine enough to get going.. Thanx for reading me

    Sysinternals has some excellent freeware to find out more of what's going on with your PC. It's pretty involved - not for the casual PC user.
    system info
    http://www.sysinternals.com/SystemInformationUtilities.html
    CPUMon
    processes and threads
    http://www.sysinternals.com/ProcessesAndThreadsUtilities.html
    PMon and FileMon

  • Having problems opening a pdf file with reader 10/11 get error msg cannot open close reader and try again any ideas

    having problems opening a pdf file with reader 10/11 get error msg cannot open close reader and try again any ideas

    Hi George ,
    Is it happening with all the PDF' or any specific one?
    Could you please share the error message so that we can replicate at our end ?
    Try repairing reader  once and see if that fixes the issue.
    Launch Reader>Navigate to Help>Repair Adobe Reader Installation
    Regards
    Sukrit Dhingra

  • I had problem with my apps,they open for a while and closes with in seconds i cant acess them

    i had problem with my apps,they open for a while and closes with in seconds i cant acess them and i had this with all apss,expect apple apps

    Do you have a lot of apps? Did you use a lot of apps recently? If so, many of them may still be resident in memory even if you aren't currently using them. Double-tap the home key and you should see the app tray with a list of most recently used programs. Press and hold the icons in the tray and remove the ones you don't use often to remove them from memory. Powering off and then back on might also help.
    My wife's iPod does that sometimes, and it's usually because we run out of memory due to apps remaining in memory even when not used. The suggestion above is how we normally fix the problems.

  • Keeping at Least One Accordion Panel Open with Variable Heights

    Hi -
    Is there a way to keep at least one panel open when using {
    useFixedPanelHeights: false }?
    Here's an example:
    http://labs.adobe.com/technologies/spry/samples/accordion/AccordionSample.html#VariablePan elHeights
    If panel 4 is open, and you click the panel 4 heading, it
    closes and no
    panel is open.
    Thanks,
    Rod

    Sorry, I didn't read my full message regarding wanting only
    one panel to open.
    What I ended up doing was using a PHP conditional to display
    a message if a certain variable was not passed in the URL. See my
    post on the Friends of Ed forum. Scroll to the bottom for my
    solution.
    http://friendsofed.infopop.net/4/OpenTopic?a=tpc&s=989094322&f=5283032876&m=3461018571

  • Where are the VI's:'Close Panel & Open Panel?

    Hi everybody again!
    Well my problem now is that if I want to call a panel from another panel,
    this first panel must be closed, because if it isn't closed thr progam doesn't
    run.
    I know how I have to call another VI, but the problem is that if the VI has
    been opened before, you can't open a VI twice, so I should close the Vi before
    calling another VI.
    I have seen the help and exist two VI's called 'Close Panel' and 'Open Panel',
    but I haven't found them yet!
    Is there any helpful suggestion for me?
    Thanks too much for your answers.

    Hi Carlos
    Open Panel and Close Panel are in the library
    \labVIEW\Vi.lib\Utility\victl.llb
    They were in the standard pallet before LV 5, they are still there for backward compatibility. The new VIServer functionality in
    LV 5.x does the same and more and so replaced them.
    Also note Open Panel and Close Panel are now constructed using VIServer functions, where before they were dll or cin calls.
    Tim
    Carlos Jorge wrote:
    > Hi everybody again!
    >
    > Well my problem now is that if I want to call a panel from another panel,
    > this first panel must be closed, because if it isn't closed thr progam doesn't
    > run.
    >
    > I know how I have to call another VI, but the problem is that if the VI has
    > been opened before, you can't open a VI twice, so I should close the Vi
    before
    > calling another VI.
    >
    > I have seen the help and exist two VI's called 'Close Panel' and 'Open Panel',
    > but I haven't found them yet!
    >
    > Is there any helpful suggestion for me?
    >
    > Thanks too much for your answers.

  • I want an app to close or browse through open apps at the same time by double tapping the home button i can find the open apps with the minus sign on it and dont move

    I want an app to close or browse through open apps at the same time by double tapping the home button i can find the open apps with the minus sign on it and dont move

    Try a reset: Press the Sleep/Wake button and the Home button at the same time for ten seconds until the Apple logo appears. Note: No data will be lost

Maybe you are looking for

  • I have been having problems with my iPod touch and my WRT...

    I have been having problems with my iPod touch and my WRT54G router. I am so frustrated right now because after following the various steps mentioned in one of these threads, following Earthlink's prompts, and speaking with Apple, my iPod touch will

  • Apps have connect to itunes to receive push

    When I launch Yahoo Fantasy Football app, message keeps popping up "Connect to iTunes to receive push notifications" -then I connect, sync and the same thing appears. Some other apps do the same thing, some say the message once and it's fine.  It hap

  • Tab navigation is not working on chrome and firefox

    Hi Every One, we are using jdev 11.1.1.6. Navigation across tabs on click of tab on key board is not working on firefox and chrome. Please help me with your inputs. Thanks in advance. Regards, Lavanya.

  • Error running WebCenter Tutorial

    Hi, I am trying to go through the WebCenter tutorial Oracle® Fusion Middleware Tutorial for Oracle WebCenter Developers 11g Release 1 (11.1.1) I have installed JDeveloper Studio Edition Version 11.1.1.4.0 and added the WebCenter Extensions. I created

  • Question using compareTo ...

    Alright I have a general question on using the compareTo method... I was to add two different polynomial terms together, but in order to do this I need to compare the degrees of both degree inputs together. If they are the same I combine the coeffici