How to open multiple collapsible panels?

http://labs.adobe.com/technologies/spry/samples/collapsiblepanel/collapsible_panel_sample. htm
This "Open Panel with Link" sample opens only one panel, but
I'd like to open multiple collapsible panels at the same time with
one button/link click.
I'm trying to use a class name "Collapsible Panel" instead of
the id name "cp1, cp2,cp3,cp4, ....", but I'm stuck on how to
open/close by class name.
If anyone knows how to do it, I'm appreciated to hear it.
Thanks,
(^_^)/

I'm not sure if this is what you're going for, but here is an
example of using a text link to open multiple collapsible panels:
<a href="javascript:;"
onclick="CollapsiblePanel1.open();CollapsiblePanel8.open();">Click
to open</a>
<a href="javascript:;"
onclick="CollapsiblePanel1.close();CollapsiblePanel8.close();">Click
to close</a>
<div id="CollapsiblePanel1" class="CollapsiblePanel">
<div class="CollapsiblePanelTab">Standard Collapsible
Panel</div>
<div class="CollapsiblePanelContent">
<p>Default CSS class .CollapsiblePanel width set to
300px. Since all Panels on this page use the same CSS, it
affects all Panels on the page.</p>
<p>Custom classes can be used to customize individual
Panels. </p>
</div>
</div>
<div id="CollapsiblePanel8" class="CollapsiblePanel">
<div class="CollapsiblePanelTab">Standard Collapsible
Panel</div>
<div class="CollapsiblePanelContent">
<p>Default CSS class .CollapsiblePanel width set to
300px. Since all Panels on this page use the same CSS,
it affects all Panels on the page.</p>
<p>Custom classes can be used to customize individual
Panels. </p>
</div>
</div>
<script type="text/javascript">
<!--
var CollapsiblePanel1 = new
Spry.Widget.CollapsiblePanel("CollapsiblePanel1");
var CollapsiblePanel8 = new
Spry.Widget.CollapsiblePanel("CollapsiblePanel8");
</script>

Similar Messages

  • How to open multiple artboard illustrator file in illustrator. Coz, whenever we open a multiple artboard file, illustrator provide an option to chose one artboard but does not allow opening of all artboards. Somebody may explain it

    How to open multiple artboard illustrator file in illustrator. Coz, whenever we open a multiple artboard file, illustrator provide an option to chose one artboard but does not allow opening of all artboards. Somebody may explain it

    Doug's got it right. It sounds like you are trying to open a later version file in an earlier version. This will always be handled as opening the PDF portion of the file. Try Googling AI_openMultiPagePDF for a script to open these or Resave from the newer version to the older.

  • How to open multiple sql files in only one ssms instance

    how to open multiple sql files in only one ssms instance, I can't get anything to work that I find online..I hope you can help us.

    I tried opening two files but selecting and hitting enter. it opens one SSMS and two tabs.
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • How to Open multiple form with only one screen painter file

    Hi all ,
    I want to reopen the form without closing the active form ,i want to use same srf file ..
    I have already try it but form already exist error occur .
    pl help me , how to do it ?
    how to open multiple form with same srf file without closing active forms .
    thanks in advance,
    msw

    <?xml version="1.0" encoding="utf-16" ?>
    <Application>
      <forms>
        <action type="add">
          <form appformnumber="-1" FormType="-1" type="0" BorderStyle="0" uid="BOE" title="Bill of Entry" visible="1" default_button="1" pane="0" color="0" left="365" top="62" width="801" height="410" client_width="785" client_height="372" AutoManaged="1" SupportedModes="15" ObjectType="">
            <datasources>
              <dbdatasources>
                <action type="add">            
                </action>
              </dbdatasources>
              <userdatasources>
                <action type="add"/>
              </userdatasources>
            </datasources>
            <Menus>
              <action type="enable">
                <Menu uid="1282"/>
              </action>
              <action type="disable">
                <Menu uid="5890"/>
              </action>
            </Menus>
            <items>
            </items>
            <ChooseFromListCollection>
              <action type="add">
                <ChooseFromList UniqueID="-1" ObjectType="-1" MultiSelection="0" IsSystem="1"/>          
              </action>
            </ChooseFromListCollection>
            <DataBrowser/>
            <Settings Enabled="0" MatrixUID="" EnableRowFormat="1"/>
          </form>
          <form appformnumber="-1" FormType="-1" type="0" BorderStyle="0" uid="BOE1" title="Bill of Entry" visible="1" default_button="1" pane="0" color="0" left="365" top="62" width="801" height="410" client_width="785" client_height="372" AutoManaged="1" SupportedModes="15" ObjectType="">
            <datasources>
              <dbdatasources>
                <action type="add">
                </action>
              </dbdatasources>
              <userdatasources>
                <action type="add"/>
              </userdatasources>
            </datasources>
            <Menus>
              <action type="enable">
                <Menu uid="1282"/>
              </action>
              <action type="disable">
                <Menu uid="5890"/>
              </action>
            </Menus>
            <items>
            </items>
            <ChooseFromListCollection>
              <action type="add">
                <ChooseFromList UniqueID="-1" ObjectType="-1" MultiSelection="0" IsSystem="1"/>
              </action>
            </ChooseFromListCollection>
            <DataBrowser/>
            <Settings Enabled="0" MatrixUID="" EnableRowFormat="1"/>
          </form>
        </action>
      </forms>
    </Application>

  • HOW TO OPEN MULTIPLE TABLES IN SQL DEVELOPER SIMULTANEOUSLY

    hello i m new to sqldeveloper so plz dnt laugh if m asking silly question
    HOW TO OPEN MULTIPLE TABLES IN SQL DEVELOPER SIMULTANEOUSLY

    Use the 'pin' on your table editor
    http://www.thatjeffsmith.com/archive/2011/11/sql-developer-quick-tip-pin-query-result-sets-and-plans/
    Then open your 2nd table. If you want to see both at the same time, right-click on the table editor tab and select 'New Editor Tab Group'
    Not a silly question, but no need to shout :)

  • How to make Spry Collapsible Panels open one at a time?

    Hello,
    I am using CS5 and want to use the spry collapsible panels. What I notice (and I think this wasn't the case in cs3) is that all panels can be open at the same time. I don't want that happen. I only want one panel to be open at a time. If someone clicks on a panel that is closed, I want the current panel to close and the one they clicked on to open. I don't want multiple panels to be opne at once. How can I do this? I am not a web developer by any means, so please be easy on me with code. I think in CS3 it used to work this way. Any help would be appreciated! Thank you in advance!

    GRAMPS!! That's it!! It was the accordian panel I had used in the past!!!! Oh, thank you, I was driving myself crazy as to why it wasn't working the way I had remembered!!!!!!!! THANK YOU!!
    I was told you would probably help me find the right answer by Hans-g!
    Thanks again!

  • Multiple Collapsible Panel Issues

    When I have a single collapsible panel on my page it works
    just fine. However, once I start to add more panels I start to get
    issues. The panels are not nested or anything, I just have the
    following problem:
    With a single panel, the entire tab area is clickable as the
    control to open/close the tab.
    With multiple panels the first panel is as above but any
    subsequent panels lose haveing the entire tab area as clickable.
    What I mean is you can only open or close the tab by clicking on
    the text within the tab itself, rather than any area of the tab.
    I am using 1.6 and ensuring my div id's match the
    corresponding script insert at the bottom of the page etc for each
    new panel.
    Any help would be greatly appreciated
    TIA

    nvm, i had a funny margin value set that was throwing things
    our of whack for some reason, found it totally by accident.
    thanks anyway

  • How to open multiple files on one layer

    hi there,
    I have a fairly simple problem and I browsed through all the different FAQs to find it but nothing came up. In any case, my question is how do you select multiple files (in this case PNGs) and open them as individual layers on one file instead of opening them as separate files?
    easy huh? I'm a noob ok.
    thanks
    -Chance

    Russell Brown has a CS4 version of his services.
    As Wolf points out, if you have CS4 then you already have access to a script that will also do what you want. I happened to notice though, that the built-in script and the Russell Brown script work slightly differently. The RB script will crop all images based on the first one loaded. The built-in script will apparently use the dimensions of the largest image.
    It was a nit but I thought the title of the thread would be more accurate as "Help opening multiple images as layers in a single file" or something like that.

  • How to open multiple sessions for one user?

    Sorry for the silly question but I couldn't find it googling or searching through this forum, so I started wondering whether it's possible in SQL Developer to open multiple sessions for one user. I'm fairly new to SQL Developer and databases in general.
    When I open SQL Developer and connect to a schema, a worksheet opens named MYSCHEMA. If I disconnect then connect, another worksheet opens, named MYSCHEMA~1. I assumed these were different sessions, but if I enter into one worksheet:
    select col1 from my_table where row_id = 1
    -- shows result is 1
    update my_table set col1 = 0 where row_id = 1
    select col1 from my_table where row_id = 1
    -- shows result is 0and then enter into the second worksheet:
    select col1 from my_table where row_id = 1
    -- shows result is 0I would have expected the second worksheet to report 1 because the first worksheet did not issue a COMMIT. Thus, I'd guess both worksheets are the same session? Is that right? If so, how do I have two sessions open simultaneously (opened by same user)?
    I'm trying to implement the code at the bottom of this post, for which testing requires at least two sessions:
    Re: Help with Procedure
    Edited by: tem on Apr 18, 2012 6:44 AM

    Thanks Jim,
    Ctrl-Shift-N doesn't do anything for me. I'm on a mac -- by experimenting it looks like command-N does what you're looking for. This appears to be the same as left-clicking on the "New" icon in the top left corner of SQL Developer, or selecting from the pull-down menu, File > New.
    This opens "Create a New" window that appears to be a wizard. What would I select at this point? Options are: Database Connection, Table, View, Package, ...
    I don't see an option for "Worksheet".
    UPDATE:
    OK, I found that if I select "SQL File", a worksheet becomes available. Perhaps this is what you intended. However, when I issue the command
    select col1 from my_table where row_id = 1;it still returns 0 instead of 1. Hmm, maybe my initial assumption was wrong -- if this is a second (e.g. different) session, should I expect the changes made in the first session in SQL Developer (the UPDATE command) WITHOUT a commit, to be observed in this second session? I thought that changes made in one session were not viewable in a different session until these changes are committed in the first session? If so, how to show this in SQL Developer? I must be missing something basic here.
    Or, is SQL Developer issuing some sort of "auto-commit" without my knowledge?
    Edited by: tem on Apr 18, 2012 8:00 AM

  • How to open multiple instance of Adobe Live Cycle Designer ES 8.2

    Hi,
      How do I open multiple instance of Adobe Live Cycle Designer ES 8.2. I have two forms and I need to compare them. Another situation is I want to correct/copy the contents by keeping the old and new one under the view simultaneously. I also want to take advantage of multiple monitors
    The MDI style windows with Ctl+Tab to switch between documents is not helping me in the context explained above
       adobe Acrobat work on multi instance if I type acrobat.exe /n;
    but if I type "C:\Program Files\Adobe\Acrobat 9.0\Designer 8.2\FormDesigner.exe" /n;, its just opening the existing livecycle instance
    please help

    I don't think you can run two instances.
    But you can stretch the main application window across both monitors and tile the two documents inside the main window.

  • How to open multiple images in photoshop cs3

    Hey, what im trying to do is open multiple images in photoshop cs3 and then blend the images together. But the problem that i am facing is that i can only open one image at a time. Can someone tell me step by step how to do this.
    Thanks for the help
    Michael

    i dont belive i have tabbed view, what i just did, was i draged one photo into phtoshop and then another. When i look to my right, only one iamge shows up in the layers and the other seems to have dissappeaed.
    It seems that having a tabbed view is useful, how do i set photoshop to this?

  • How to open multiple report windows on button click without losing session?

    Hi,
    JDev : 11.1.1.2.0
    I am trying to open multiple discoverer plus report windows using my ADF application.
    My requirement is that user has to select multiple reports from the screen and by clicking on submit button all the reports should be opened in different windows.
    1) Below link provided me the the first solution but I can't go with it because my page is jsff and in jsff it doesn't support form tag.
    http://andrejusb.blogspot.com/2007/07/opening-report-window-in-adf-faces.html
    2) RichGoButton also provide targetFrame property but there is not action property in it so I can't call backing bean method with RichGoButton
    3) I have tried to open report windows using javascript window.open with ExtendedRenderKitService but on discoverer side it giving error message that Discoverer Plus cannot attach same session to multiple request.
    4) I have created one jsp page in the same folder where my jsff is kept in my ADF application and on submit button click I have launch this jsp page using afConetxt.launchDialog and in jsp scriplet I have written response.sendRedirect to report url but here all report are getting open properly to seperate windwos but my ADF application session is getting timeout so after clicking on submit button it will automatically goes to login page it cann't stay with the current page.
    Hoe you have understnad my problem and please provide me if you know any other solution aprart from above mentioned 4 solutions
    Regards,
    DevD

    sURL is query parameter value that I want to pass on jsp page. It is used to set some value on jsp page.
    If this is not a right approach then let me know how to pass the parameter in jsp page.

  • How to open multiple Forms sessions

    How do I open multiple sessions of Oracle Forms on the same Client machine. Right now if I have a Forms session open, when I open a new browser session and type in the URL it takes me back to the Oracle Forms session which I have open. I am running Forms 6i on 9iAS on a Solaris machine. Thanks in advance for any suggestions.

    Rajesh,
    Your question will be answered rightly in the Oracle - Forms discussion formums.
    Thanks,
    Bala.

  • How to open an Adobe Panel

    Hi.
    I was wondering how I can open an Adobe Panel - say 'Articles' or 'Color->Swatches'  from a script?
    [JS] [CS3-CS6]
    Thanks.

    @Pete – for locale independent strings try the "$ID/englishname" method.
    For example, in my German InDesign CS5.5 the visibility of the "Articles" panel can be set with:
    app.panels.itemByName("$ID/Articles").visible = true;
    the German locale for "Articles" is "Artikel", so it's the same for the German InDesign to say:
    app.panels.itemByName("Artikel").visible = true;
    Uwe

  • Multiple Collapsible Panels on same page

    I am creating a new site using Dreamweaver CS3, temporarily uploaded at:
    http://www.sharpeacademy.co.uk/nick-jackson.co.uk/sharpeacademy/theatrearts/
    I have an email signup form using a collapsible panel (this appears on every page). I want to put a second collapsible panel elsewhere on selected pages with completely different formatting. Is this possible? When I tried to add another panel it adopted the formatting of the email panel. I don't know how to change it while leaving the email styling intact.

    Check the variables at the bottom of the page. When I loaded it in, Dreamweaver said there is javascript widget code that goes to
    widgets that have been removed. Your Spry will not work if the proper code is not at the bottom of the page.
    The yellow border comes from
    .CollapsiblePanel {
        padding: 0px;
      background-color: #FEFAEC;
        border: 1px solid #F1CB00;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 10px;
        margin-left: 0px;
    Running the DW validation check turns up a bundle of nesting errors, etc. If you sort those out, you may find the monkeywrench that is making your collapsible panel not collapse.
    Take advantage of the w3c validators, too:
    http://validator.w3.org/check?uri=http://www.sharpeacademy.co.uk/nick-jackson.co.uk/sharpe academy/theatrearts/harrow.html&charset=(detect+automatically)&doctype=Inline&group=0
    http://jigsaw.w3.org/css-validator/validator?uri=http://www.sharpeacademy.co.uk/nick-jacks on.co.uk/sharpeacademy/theatrearts/harrow.html&profile=css21&usermedium=all&warning=1〈=en
    I think that the widget errors on the CSS validation are non-starters; that is, don't worry about them because they won't validate.
    The rest should be considered.
    Beth

Maybe you are looking for

  • IPod-error message when synching...says I need an update

    So I did the update and it says mine is up to date but when I sync I get this message: Some of the songs in the iTunes m usic library were not copied to the iPod because your iPod software is too old. Go to...

  • Popup in facelet JSF in weblogic portal 10.3.2 ?

    Hi all, I am working on weblogic portal 10.3.2, now i want to pop-up a windows in my portlet base on facelet but i cannot do that. Can somebody help me? Any suggestion or helping are welcome. Thanks in advance. Best regards, Coy.

  • Merge Module Problem - I think!!

    I had tried the trail version of Crystal Reports XI and was able to make it work in my applications just fine.  Now that I have purchased the product I have had nothing but trouble.  I can not get it to work even with the previous application that I

  • Installation impossible sur ce disque

    Bonjour, Cela fait plusieurs versions de flashplayer que l'installation me dit "installation impossible sur ce disque" lorsque j'utilise l'utilitaire d'installation. J'ai tout essayé avant, et j'ai désinstallé, essayé d'utiliser un autre disque, mais

  • Set type COMM_PR_UNIT does not exist

    Hi All How do i make set types available for assignment to categories if they are not available but are there in comm_settype. Getting errors as follows: Set type COMM_PR_UNIT does not exist. Please assist Regards, Patrick Edited by: Patrick Chidarar