Tabbed Panel - Multiple w/ Rollovers & Different Looks

Hi again and Happy Monday!
So in my quest to bring better functionality and spiffiness to my company's intranet site I have yet again found a new and nerve racking problem.
Here goes:
Adding in multiple Spry Tabbed Panels.
If I make them on a new clean page they show up just fine....until you attempt to add in rollover functionality.
Example: Panel Alpha and Panel Beta
Panel Alpha has the rollover script "onmouseover="TabbedPanels1.showPanel(this);" in the tabs so that the user doesn't need to click to make the navigation appear.
Panel Beta does not
When you rollover a piece in Panel Alpha the entire content block of Panel Beta disappears and the content in Panel Alpha does not show up.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
<link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css">
</head><body>
<div id="Panel_Alpha" class="TabbedPanels">
  <ul class="TabbedPanelsTabGroup">
     <li class="TabbedPanelsTab" tabindex="0" onmouseover="TabbedPanels1.showPanel(this);"><a href="index.htm"  onclick="window.location = this.href;">Link1</a></li>
    <li class="TabbedPanelsTab" tabindex="1" onmouseover="TabbedPanels1.showPanel(this);"><a href="../field_rewards/index.htm"  onclick="window.location = this.href;">Link 2</a></li>
    <li class="TabbedPanelsTab" tabindex="2" onmouseover="TabbedPanels1.showPanel(this);"><a href="index.htm"  onclick="window.location = this.href;">Link 3</a></li>
    <li class="TabbedPanelsTab" tabindex="3" onmouseover="TabbedPanels1.showPanel(this);"><a href="index.htm"  onclick="window.location = this.href;">Link 4</a></li>
    <li class="TabbedPanelsTab" tabindex="4" onmouseover="TabbedPanels1.showPanel(this);"><a href="index.htm" onclick="window.location = this.href;">Link5</a></li>
    <li class="TabbedPanelsTab" tabindex="5" onmouseover="TabbedPanels1.showPanel(this);"><a href="index.htm" onclick="window.location = this.href;">Link 6</a></li>
  </ul>
  <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent"><a href="../employee_resources/index.htm">Employee Resources</a> | <a href="../people_org.htm">People and Organization</a> | <a href="../resources.htm">Resources &amp; References</a></div>
    <div class="TabbedPanelsContent"><a href="../field_rewards/people_org/index.htm">People & Organization</a> | <a href="../field_rewards/news.htm">News &amp; Calendars</a> | <a href="../field_rewards/policies.htm">Policies &amp; Procedures</a> | <a href="../field_rewards/reports.htm">Reports &amp; Forms</a></div>
    <div class="TabbedPanelsContent"><a href="../agency/people_org/index.htm">People & Organization</a> | <a href="../agency/news.htm">News & Calendars</a> | <a href="../agency/forms.htm">Forms</a></div>
    <div class="TabbedPanelsContent"><a href="../fss/people_org/index.htm">People & Organization</a> | <a href="../fss/news.htm">News & Calendars</a> | <a href="../fss/forms.htm">Forms</a></div>
    <div class="TabbedPanelsContent"><a href="../fvg/people_org/index.htm">People & Organization</a> | <a href="../fvg/news.htm">News & Calendars</a></div>
     <div class="TabbedPanelsContent"><a href="../fdpa/people_org/index.htm">People & Organization</a> | <a href="../fdpa/incident_response.htm">Field Incident Response Team</a></div>
  </div>
  </div>
  <p> </p>
<div id="Panel_Beta" class="Left_TabbedPanels">
  <ul class="Left_TabbedPanelsTabGroup">
    <li class="Left_TabbedPanelsTab" tabindex="0">Tab 1</li>
    <li class="Left_TabbedPanelsTab" tabindex="1">Tab 2</li>
  </ul>
  <div class="Left_TabbedPanelsContentGroup">
    <div class="Left_TabbedPanelsContent">Content 1</div>
    <div class="Left_TabbedPanelsContent">Content 2</div>
  </div>
  <p> </p>
</div>
<script type="text/javascript">
<!--
var TabbedPanels1 = new Spry.Widget.TabbedPanels("Panel_Beta");
var TabbedPanels2 = new Spry.Widget.TabbedPanels("Panel_Alpha");
//-->
</script>
</body>
</html> 
Okay now that the already made build page or template:
I already have a template built using the Panel Alpha as the main navigation (with the rollover functionality and it works) and Panel Beta needs to be an optional region in the template as not all pages will display it.
Wouldn't you know it....Beta Panel doesn't work at all on the exisiting template page(have not made it an optional region just an editable while it's being built). I have instered a clean Tabbed Panel spry with it's own id and different CSS rules. All it does is show all the content in a UL and you can't click on it (which is the default behavior and believe me adding the rollover doesn't work either) to show a selected tag nor change the content. It just won't work.
Existing template page code:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<script src="../SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
<link href="../SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="toolbar">
RSS Mutualnet Home Favorites Contact
</div>
<div id="banner" >
<a href="../index.htm" class="department"><img src="../img/banner_logo.gif" alt="Agencies" width="165" height="41" border="0" style="margin-left:25px"></a>
<div id="TabbedPanels1" class="TabbedPanels">
  <ul class="TabbedPanelsTabGroup">
     <li class="TabbedPanelsTab" tabindex="0" onmouseover="TabbedPanels1.showPanel(this);"><a href="../index.htm"  onclick="window.location = this.href;">Agencies</a></li>
    <li class="TabbedPanelsTab" tabindex="1" onmouseover="TabbedPanels1.showPanel(this);"><a href="../field_rewards/index.htm"  onclick="window.location = this.href;">Field Rewards</a></li>
    <li class="TabbedPanelsTab" tabindex="2" onmouseover="TabbedPanels1.showPanel(this);"><a href="../agency/index.htm"  onclick="window.location = this.href;">Agency</a></li>
    <li class="TabbedPanelsTab" tabindex="3" onmouseover="TabbedPanels1.showPanel(this);"><a href="../fss/index.htm"  onclick="window.location = this.href;">Field Services & Support</a></li>
    <li class="TabbedPanelsTab" tabindex="4" onmouseover="TabbedPanels1.showPanel(this);"><a href="../fvg/index.htm" onclick="window.location = this.href;">Field Vertical Growth</a></li>
    <li class="TabbedPanelsTab" tabindex="5" onmouseover="TabbedPanels1.showPanel(this);"><a href="../fdpa/index.htm" onclick="window.location = this.href;">Field Distribution Policies & Administration</a></li>
  </ul>
  <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent"><a href="../employee_resources/index.htm">Employee Resources</a> | <a href="../people_org.htm">People and Organization</a> | <a href="../resources.htm">Resources &amp; References</a></div>
    <div class="TabbedPanelsContent"><a href="../field_rewards/people_org/index.htm">People & Organization</a> | <a href="../field_rewards/news.htm">News &amp; Calendars</a> | <a href="../field_rewards/policies.htm">Policies &amp; Procedures</a> | <a href="../field_rewards/reports.htm">Reports &amp; Forms</a></div>
    <div class="TabbedPanelsContent"><a href="../agency/people_org/index.htm">People & Organization</a> | <a href="../agency/news.htm">News & Calendars</a> | <a href="../agency/forms.htm">Forms</a></div>
    <div class="TabbedPanelsContent"><a href="../fss/people_org/index.htm">People & Organization</a> | <a href="../fss/news.htm">News & Calendars</a> | <a href="../fss/forms.htm">Forms</a></div>
    <div class="TabbedPanelsContent"><a href="../fvg/people_org/index.htm">People & Organization</a> | <a href="../fvg/news.htm">News & Calendars</a></div>
     <div class="TabbedPanelsContent"><a href="../fdpa/people_org/index.htm">People & Organization</a> | <a href="../fdpa/incident_response.htm">Field Incident Response Team</a></div>
  </div>
</div>
</div>
<div id="container">
<div id="content">
<!-- TemplateBeginEditable name="EditRegion3" -->Body!
<!-- TemplateEndEditable -->
</div>
  <div id="right">
  <div id="Left_Table" class="Left_TabbedPanels">
    <ul class="Left_TabbedPanelsTabGroup">
      <li class="Left_TabbedPanelsTab" tabindex="0">Tab 1</li>
      <li class="Left_TabbedPanelsTab" tabindex="0">Tab 2</li>
    </ul>
    <div class="Left_TabbedPanelsContentGroup">
      <div class="Left_TabbedPanelsContent">Content 1</div>
      <div class="Left_TabbedPanelsContent">Content 2</div>
    </div>
  </div> </div>
</div>
</div>
<!-- TemplateBeginEditable name="EditRegion5" --><script type="text/javascript">
<!--
var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
var TabbedPanels2 = new Spry.Widget.TabbedPanels("Left_Table");
//-->
</script><!-- TemplateEndEditable -->
</body>
</html>
So basically I need this:
A template page with 2 Tabbed Panels, each in a different spot with it's own look and both panels must work with the rollover functionality to display content.
Note: No .js file was hurt or tampered with in the pursuit of making this happen.
Please note I cannot link to a live page as it's on the intranet servers and cannot be made visible to the outside world.
I work on CS4 and the company will only allow IE 6 or 8 on the machines and really hope that there is a solution to this...I mean I have a plan B but would really like to use the tabbed panel on the side to get rid of using additional tables on the pages (I'm moving the pages away from tabled design and into tableless CSS)
Also as a premptive question...will the Tabbed Panels conflict with an accordian spry object (which I'll need to add to make a 3rd level navigation and at some point most likely need multiple accordian objects on a page)?
Okay guys and gals...have at it!
Thanks and love.
-Carolyn

I'm sorry...there is always next year to crush the Spanish!
You answered that one beautifully!
Now I just need this one answered ^_^

Similar Messages

  • Spry Tabbed Panel 2.0 Suggestions/Questions

    I've been starting to play around with the Widget Browser on CS4 & CS5 and I am just noticing a few things that I think need to be looked at.
    1. I am starting to understand your process for the UI (I actually never realized that was there at first, but with CS4 version I also have it makes it more obvious).  Is there a plan before the final release to allow users to edit text/content within the tabs or panels within the GUI, or will that end up being done with DW only?
    2. In the code view for the page, it is laid out with <h2> for the title and <p> for the tags.  Wouldn't it make more sense to have the tabbed panels to be <div>'s as opposed to <p> for the sake that with divs, it can be essentially like creating a page within the tab.  For instance, you can position elements within a div, add p tags as necessary.  I'm just thinking if the tabbed panels will be used by users for more than just text this code should change to accomodate that.  I do realize on live code it is being converted back to a <div>, just curious why it is the way it is.
    3.  Maybe I'm missing this somewhere but is there an option to set the default document type in the Widget Browser or within the import to CS5?

    1)
    I can't really answer that, so what I would suggest is posting that answer in the correct forums: http://forums.adobe.com/community/labs/widgetbrowser you might get more luck there with finding an answer to your question
    I do share the same feelings about this issue, I think allot of users would still love to be able to configure the widgets through DW. But the issue is that the widget browser is based on the Open Ajax Metadata specification which does not include such functionality in to its specification.
    Aleast, there is no way for developers to "tell" Dreamwaver which markup they should add to create a new panel or instance. While it would nice to have i doubt its techically possible at this point. But those are just my 2 cents =
    2)
    The tabbed panel supports of allot different markup. But they can only ship one markup with the Widget Browser.  As you will see in the SpryTabbedPanels documentation you can specify the tabs and content panels manually by adding the CSS selector for those in to the constructor of the widget: http://labs.adobe.com/technologies/spry/ui/samples/tabbedpanels2/SpryTabbedPanels2_sample1 .html
    3)
    There is no way to specify "default" settings for all widgets. As the developer of the widget decides the markup that ships with the widget. As for DW, you can specify the default document type through the preferences panel > new document > Default Document Type ?
    While the responses of on these user to user forums by the Adobe product team members might seem minimal this does not mean they do not monitor the discussions that occure here. So it's always wise to speak you mind and let the community and product team know how you feel.
    ~ Arnout

  • Spry Tabbed Panels issue

    I'm having an issue with a footer table that is underneath my spray asset.  When you open the site in Safari, this table appears off to the side of the spry content, when I'd like it to appear beneath the content..as it is a footer..This ONLY happens in Safari! It works perfectly fine in IE, Chrome, and Firefox.
    I think it may have something to do with the fact that each content area of the tabbed panels is a different height, but I'm not sure how to go about fixing this.  Can anyone help me?
    Here's the website:
    http://www.duffsdepew.com
    Thanks so much!

    You are using Spry version 1.4. At the very least you should be using Spry version 1.6 which will likely overcome your problem.
    Even better is if you switch to Spry Tabbed Panels 2. Have a look here http://labs.adobe.com/technologies/spry/ui/
    I hope this helps.
    Ben

  • HELP WITH SPRY TABBED PANEL -

    On one page I created a spry-tabbed panel with a distinctive look.
    On another page, same website, I created another spry tabbed panel with its own distinctive look, its own color scheme. 
    On doing the second page I discovered I was also inadvertantly changing the color, boarders etc to the spry tabbed panel on my first page.
    Don't want to do that.
    How do I create a spry panel on 2 different pages within the same web site and let each have its own independent spry set of attributes
    Howard Blume
    [email protected]
    max os x  system10.6.6
    dreamweaver 5

    Hi Ken:
    When I insert a new spry panel it appears with all the css from the other page.
    When I began to make changes the other page reflexs those changes.
    Don't know how to get a separate SpryCss sheet. Do you?

  • Table expands outside of the content area in a tabbed panel - sometimes

    I am using a tabbed panel to create several different views of a database. The system is working pretty well, the only problem I have is that the content for almost all of the tabbed panels extend beyond the right hand end of the content panel. The page is here www.mwlcraftshow.com/gordo.php and you'll see that when you select the "Declined" tab the data shows correctly within the content area, but if you select "Accepted" or "All vendors" the table extends beyond the content panel. I've reviewed the html and css and don't see any difference between the tab that works (Declined) and tabs that don't work (All vendors, Accepted).
    I'd really appreciate someone pointing me in the right direction.
    Thanks

    I see that you are indicating td widths for your tables. If you don't try to dictate widths in tables AND reduce the size of your text, you will have better luck keeping the table on the panel. You might also consider making the live area for the TabbedPanels wider, as well (the whole widget). If you have a limited size monitor, you won't be able to do that.
    The only size you should use on this table is for the table width itself: use 100%, and it will fill the TabbedPanel Content width-wise, and should force the columns to fit (if you take off their widths as I suggested above).
    With tables, absolute width indicators seem only to be a "suggestion" as tables will automatically expand if the content is too much for the content cells. Applying a 100% width for the table as a whole should force the cells to expand down and not horizontally.
    Beth

  • Spry Tabbed Panel 2.0 Problem

    I have used the Spry Tabbed Panel 2.0 in DWCS5 and 6 html pages before without a problem. However, last week I tried to add a panel to an html page and while it works lovally in live view locally, I get errors that appear to be a path problem, but I cannot figure out the problem. You can view a plain html page with nothing but the Tabbed Panels 2.0 created with DWCS6 and see the errors at  http://www.scotchplainsnj.gov/tabs.html
    When the page loads it gives errors for each of the .js modules as it tries to load them. I have replicated this problem in CS5 and 6 in Windows 7. I also saw a comment in another forum where someone else was also experiencing the same problem and error sessages.
    SpryPanelSet.js requires SpryWidjet.js
    The prograns are in the default directories with no changes.
    Any help would be appreciated.
    Morris

    1)
    I can't really answer that, so what I would suggest is posting that answer in the correct forums: http://forums.adobe.com/community/labs/widgetbrowser you might get more luck there with finding an answer to your question
    I do share the same feelings about this issue, I think allot of users would still love to be able to configure the widgets through DW. But the issue is that the widget browser is based on the Open Ajax Metadata specification which does not include such functionality in to its specification.
    Aleast, there is no way for developers to "tell" Dreamwaver which markup they should add to create a new panel or instance. While it would nice to have i doubt its techically possible at this point. But those are just my 2 cents =
    2)
    The tabbed panel supports of allot different markup. But they can only ship one markup with the Widget Browser.  As you will see in the SpryTabbedPanels documentation you can specify the tabs and content panels manually by adding the CSS selector for those in to the constructor of the widget: http://labs.adobe.com/technologies/spry/ui/samples/tabbedpanels2/SpryTabbedPanels2_sample1 .html
    3)
    There is no way to specify "default" settings for all widgets. As the developer of the widget decides the markup that ships with the widget. As for DW, you can specify the default document type through the preferences panel > new document > Default Document Type ?
    While the responses of on these user to user forums by the Adobe product team members might seem minimal this does not mean they do not monitor the discussions that occure here. So it's always wise to speak you mind and let the community and product team know how you feel.
    ~ Arnout

  • Tabbed Panel Events?

    Is there a way to detect when a tabbed panel changes to a
    different pannel?
    I need to have Previous and Next buttons that can step uses
    through various part of the page including tabs and I can switch
    tabs via the showPanel method, but if the user manually clicks to a
    new tab I don't know that.
    Thank You,
    rundeks

    Hi,
    try the onChange-event
    somePanel.onChange = function ()
    $.writeln(somePanel.selection.text);    

  • Anchor tag inside Spry Tabbed Panel Content

    I have successful been able to use code I found listed on
    here to open a specific tab in a Spry Tabbed Panel form a link. Now
    I am wondering if anyone has found out how to add an anchor tag
    code this so that is goes to a specific location inside that Tabbed
    Panel Content?

    I was looking for an answer on how to open a tab from another tab and found it!
    In return I'll give you a hint on how to open a tab from another tab using an anchor
    for example,
    if you were working on a file named "projects.php"
    create an anchor in tab 2
    <a name="anchor1" id="anchor1"></a>come next to me
    in tab 1 create the link to the anchor in tab 2
    <a href="projects.php#anchor1" onclick="TabbedPanels1.showPanel(1); return false;">open tab 2 and go to its anchor 1</a>
    In your case you are overlooking the file name and jumping directly to the anchor name.....am I right??
    cheers from Lima, Perú

  • Spry tabbed panels - Different Hover Class for each tab

    Already posted this in the general Dreamweaver section, but just realized there was a specific Spry section. So, my apologies for the repost.
    I'm setting up spry tabbed panels, and I'm wanting to use an image for each tab, with the text already on it. I've figured this much out by creating a different class for each in the spry tabbed panel css.
    However, I'd also like to have a second hover image for each tab. I'm having trouble figuring out how to set up separate classes for each tab's hover state.
    Any help?
    Thanks.

    Just in case you did not notice the announce at the top of this forum's main page, I have copied it here.
    Announcement: New to Spry, or  the Spry forums?
    Hide Details
    Before you post a topic please verify  that:
    You  are using the latest Spry files
    The latest version of  the Adobe Spry Framework is 1.6.1, this is the same version that ships  with Dreamweaver CS4. If you use Dreamweaver CS3 (uses Spry 1.4), its  wise to upgrade your files to the latest version. This can easily be  done using the Spry Updater that can be found here.
    Your  question was not asked before
    Using the search  functionality on forums you can easily find out if your question has  been answered before. While you are in search, you can specify the  search locations. The Spry forum can be found under:
    Adobe  Labs > Spry Framework for Ajax
    Yoru question can not be  found in the existing documentation
    Spry provides you  with allot of documentation this can found on different locations. In  the sidebar of this forum you can find a small summary of resources that  will help you on your way.
    If these options do not apply to your question,  please be so kind to also supply the following information in your topic  together with a clear description of your issue:
    What  browsers does this issue occure:
    example: Internet Explorer 8 on  Window 7 and Firefox 3.0 on Mac OSX
    What version  of Spry are using:
    example: Spry 1.6.1 ( the version number can  be found in license header of the .css and .js files )
    What  is the url of your website or page in issue:
    example: http://www.example.com/page/in/issue.html
    Step  to reproduce the issue:
    example: Scroll down till you find the  header "help", there you will see a Spry Accordion. When you click on it  it will not open or close.
    So users can provide you with a  better answer, without having to ask you for further details.
    by Arnout Kazemier at Oct 23, 2009 2:47 PM                        
    landon_tc wrote:
    Actually, I do remember posting that, and have updated it with what worked for me. However, I could not recall posting it in a specific ajax spry forum, so I assumed I just posted in the general forum. Hence the current situation.
    Yeah and my name is not Ben Pleysier.
    landon_tc wrote:
    Any help with the current problem?
    Please have a look at this thread http://forums.adobe.com/message/2662019#2662019
    I hope this helps.
    Ben Pleysier

  • Spry tabbed panels: creating links to a different tab

    I am trying to feature links on the main section of my tabbed panel page ( http://www.iecaonline.com/benefits-spry.html ) that link to a different tab. I read a tutorial on the labs page (http://foundationphp.com/tutorials/spry_url_utils.php) on how to do this, downloading the spry updater, but I couldn't get it to work. Is there a simple way to accomplish this?
    Thanks.
    Sarah

    Hi Sarah,
    look here:
    Get prerelease 1.6.1 of Spry framework now spry_p1-6-1_022508.zip
    http://labs.adobe.com/technologies/spry/
    Get prerelease 1.6.1 of Spry framework now
    Get the Spry Updater for Dreamweaver CS3/CS4 now
    Discuss Spry in the Labs forums
    or here at Adobe Labs Downloads:
    http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5Fspry
    Hans-G.

  • Multiple Spry tabbed panels?

    Is it possible to have more than one set of Spry Tabbed
    Panels .css rules, i.e., with different rules within the same web
    site?
    I'd like to have tabbed panels with differing heights or
    widths, but if the dimensions (and, obviously, other rules) are
    changed for one panel, it changes them for all panels within the
    web site.

    I would like to digg up this old post if possible and really looking for an answer asap!
    Unfotunately the answer given here was pretty poor and didntreally help, hence the reason the user I believe went else where and got a simpler and more in depth answer in a non techie jargon from asktheecpers.com.
    Anyway, my problem is slightly different but must be possible!!
    I have one tabbed panel, but I have a fairly complex slanted tabs menu, I have done well so far to get it to work, however the final step I need to apply a slighly diffent hover class to on eof the tab items (the first one in the list has a flat left edge and not a slanted.)
    The selcted and initial states are fine as I have applied a different class and therefore can apply a different image, however the hover class is applied dynamic throughthe JS (not my area of expertise!!) and so I need to create a 2nd hover class to apply to different list items within the same tabbbed group??
    Please, please help!!
    Regards,
    Ryan.
    Problem can be seen here, its the first tab that is the problem, its hover needs to be a different image (blue with straight left edge)
    http://doosan.corporateprm.com/
    Thanks

  • I can't view multiple images in tabbed panels in photoshop CC (do not have this problem in PS5 or 6)

    I can't set up multiple images in tabbed panels in photoshop CC (do not have this problem in PS5 or 6). Has anyone had this problem with CC and if so do they know the fix?

    I just discovered something really weird.  If I open the images in
    photoshop (and the tabs are not showing) and then open another window on
    top of photoshop (for example word or safari) , then the images and tabs
    show in the photoshop window.  But if I move Pshop to the front screen then
    the tabs disappear!

  • BEx Broadcaster - Using a Workbook with multiple queries on different tabs

    Hi,
    I was wondering if any has used Bex Broadcaster to broadcast a workbook that contains multiple queries on different tabs in the workbook.  I believe someone has mentioned that this was an issue in the past and I was wondering if this now a possibility with Bex Broadcaster
    If you were able to do this successfully, please let me know.
    Thanks

    Hello
    Of course it is possible.
    But, if you want to broadcast a workbook, you have to use a Precalculation Server.
    Without precalculation server, workbooks cannot be precalculated and broadcasted.
    More details, please check the note below:
    1461398          BW 7.X(7.20) Precalculation - General Info. & Limitations                              
    Best regards,
    Edward John

  • Newbie looking for advice on spry tabbed panels for record view/add/edit

    I have just got CS 5.5. Although old hand at IT this is fist use of DW. Have been through "The Missing Manual" and I am now trying somethings out.
    I have an SQL DB and some "management" tables. I thought that in the admin section I could use the Spry tabbed panel to create a List, Add, Edit and Delete panel.
    linking on a row in List will set the value of a variable (unique column) which is used by the Edit and Delete tabs. Add is just the wizard.
    I am only trying things out. Is this is a sensible approach or should I look to have a page for each of the 3 functions which are linked from the list of rows. As given in the example in the book?
    Regards

    Thank you for this. I see that spry is now dead but I have the bit between my teeth for working this out. Partly because it helps me understand the way things are put together. So although Spry is not important. Understanding the system that I will then adapt into other circumstances and other variants is. So please bear with me.
    So if anyone out there has some SPRY experience you may be able to tell me what knowledge I am missing here.
    So at the moment I have a tabbed panel within a tabbed panel.
    Header tabbed panel is called "TPMain"
    Sub TB is called "TPAges"
    TPAges has 4 tabs "List", "Add", "Edit" and "Delete"
    "List" being the default tab.
    Link style 1
    Playing with forms and links, I have worked out that I can create a repeat region in the list and add a column with 1 hidden value (the id) and a submit button to set the value of the id, but the code to end up showing the Edit panel is not functioning. This is the form code in the table of the List Tab
         <form action="testtab.php?tab=3&panel=3#TPAges" method="post" name="FrmEdit" id="FrmEdit">
                          <input type="hidden" name="EditID" value= <?php echo $row_rsAges['oid']; ?>/>
                            <input type="submit" name="btnEdit" id="btnEdit" value="Edit">
                          </form>
    In the edit tab I have the code
         <p><?php echo "*".$_POST['EditID']."*"; ?></p>
    The page reloads but on TPMain and on the first tab (people) and not the second tab (Ages)
    The value is correctly shown but with teh slash (/) character at the end?
    Link style 2
    I thought I would try and access it via an href. From googling I came up with this on one of the columns. I know it doesn't set the variable but I wanted to know if I could make it show the panel.
         <a href="javascript:; onclick=TPAges.ShowPanel(3)"><?php echo $row_rsAges['description']; ?></a
    No errors just does nothing.
    I'm off to hunt for jQuery tab as osgood suggests but would like to crack this out of sheer bloody mindedness.
    Regards

  • Tabbed Panel - Different selected tab gifs

    Is it possible to have different gifs show up for a selected
    tab in the Tabbed Panel example? From what I can see there's only
    one style called in the .js file. Here's my example:
    http://cftest.mccormick.com/zatstage/index.cfm
    When you click on the tabs I would like them to match the tab body
    color.

    If you mark each of your tabs with an ID then you could do
    something like this:
    .TabbedPanelsTabSelected#MostPopularTabbedPanelsTab {
    background-image: url(MostPopularTabButtonSelected.gif);
    .TabbedPanelsTabSelected#TopRatedTabbedPanelsTab {
    background-image: url(TopRatedTabButtonSelected.gif);
    .TabbedPanelsTabSelected#SearchTabbedPanelsTab {
    background-image: url(SearchTabButtonSelected.gif);
    --== Kin ==--

Maybe you are looking for

  • HP 2840 3n1 will not work with Lepard

    This my first post, I joined this group after searching google for help. I had a Mac Support Co. Install Leopard. They had problems from the get go Getting my HP 2840 3n1 printer to work. Installed new HP drivers no help. It would print, but no HP di

  • BAPI_QUOTATION_CREATEFROMDATA issue

    Hi SDN friends, In the BAPI_QUOTATION_CREATEFROMDATA i want to use the EXPORTING parameter  WITHOUT_COMMIT  . Purpose: If iam using this BAPI, i want the quote should not be created by using WITHOUT_COMMIT  . What is the value need to be passed to re

  • Communication between Clusters Problem

    Hi all           1. Is it possible for a bean, being hosted in a cluster to call a bean which is hosted in another cluster?           We have a problem with the role information, which gets wrong at every second call.           We have the following

  • Problems with webutil......alternative solution?

    not sure if this is the best forum to post this thread to...but here we go: we are currently using webutil to merge data from Oracle into a Word Template. Word is never actually seen by the end user...the Word Doc is just printed out on the users loc

  • My iCloud ID is more than 21 characters

    When I registered for ICloud I used my Australian email address, which is 25 characters long, and it was accepted and shows as my ID. But if I want to log in to add a device, etc. I get told my ID exceeds 21 characters! What to do? If I shouldn't hav