Problem with JavaScript snipet that DreamWeaver is writing

I am having a problem with code that DreamWeaver (CS3) is
writing. I'm fairly certain the problem is in a small piece of
JavaScript that DreamWeaver is composing.
This is a fairly complex problem, so bear with me.
First - What I am trying to make happen: When on a page on my
site (the-oilman.com) I want a link that opens a new window in the
on-line store at a different site (AMSOIL.com). I need to leave
both the page on my site open and have this 'store' page open.
First of all this is working fine, using the 'Open Window'
'behavior' in DreamWeaver. If someone wants to change windows (or
tabs) and go back to my page, leaving the 'store' window open also
- the problem is set up to happen. If from back at my site, you
click on the same or a different link that goes back to the 'store'
either on the same page or a different page at AMSOIL.com - the
'store' window goes to the correct page, but the 'store' window
does NOT come on top. When they click on a link to go back to the
'store' I need the 'store' window to come to the top. If they have
previously put something in the cart, and come back and add
something else to the cart in the 'store' by coming in from
different links on my site the 'store' is working correctly because
I leave it open the whole time.
snipets of code that DreamWeaver is writing for my site
(the-oilman.com):
from the head:
<script>
<!--
CSAct[/*CMP*/ '129AABC1'] = new Array(CSOpenWindow,/*URL*/ '
http://www.amsoil.com/redirect.cgi?zo=52257&page=store','store',0,0,true,true,true,true,tr ue,true,true);
CSAct[/*CMP*/ '129AAC63'] = new Array(CSOpenWindow,/*URL*/ '
http://www.amsoil.com/redirect.cgi?zo=52257&page=store','store',0,0,true,true,true,true,tr ue,true,true);
CSAct[/*CMP*/ '10D39F40'] = new Array(CSOpenWindow,/*URL*/ '
http://www.amsoil.com/redirect.cgi?zo=52257&page=storefront/sso','store',0,0,true,true,tru e,true,true,true,true);
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
//-->
</script>
code from 2 different links that is using this script:
<a href="
http://www.amsoil.com/redirect.cgi?zo=52257&page=storefront/sso"
target="store" onClick="MM_openBrWindow('#','store','')"
csclick="10D39F40">Buy Now</a>
<a href="
http://www.amsoil.com/redirect.cgi?zo=52257&page=store"
title="AMSOIL Store at AMSOIL.com" target="store"
onClick="MM_openBrWindow('http:www.amsoil.com/redirect.cgi?zo=52257&amp;page=store','stor e','')">On
Line Store</a>
I believe what I need is a longer javascript. Instead of just
"window.open" I need an "if" but my javascript knowledge is very,
very limited.
I need it to first check that if the window named 'store' is
open then 'focus' it, or if it is not open to open the window named
'store'.
Will this fix my problem? If so, please help me write the
lines of code to do it.
If this isn't the solution, what is the problem and the
solution?
A separate question but related: if you look in the two
different links codes, in the function call one of them uses a
'null' page reference and the other repeats the full link reference
from the href= . Both seem to work, but which is the correct or the
preferred syntax. My guess is there are some browsers that this
will give a problem, but which way is preferred.
Don Dawson
mailto:[email protected]

Create a new page. Try to apply this same behavior to a link
on that new
page. Look at the code. Can you reproduce the problem there?
The code you
show below has oodles of GL stuff in it. Do you need that GL
markup?
What operational sequence did you go through to get this
behavior call?
onClick="MM_openBrWindow('#','store','')"
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"pad graphics" <[email protected]> wrote in
message
news:[email protected]...
>I am having a problem with code that DreamWeaver (CS3) is
writing. I'm
>fairly
> certain the problem is in a small piece of JavaScript
that DreamWeaver is
> composing.
>
> This is a fairly complex problem, so bear with me.
>
> First - What I am trying to make happen: When on a page
on my site
> (the-oilman.com) I want a link that opens a new window
in the on-line
> store at
> a different site (AMSOIL.com). I need to leave both the
page on my site
> open
> and have this 'store' page open. First of all this is
working fine, using
> the
> 'Open Window' 'behavior' in DreamWeaver. If someone
wants to change
> windows (or
> tabs) and go back to my page, leaving the 'store' window
open also - the
> problem is set up to happen. If from back at my site,
you click on the
> same or
> a different link that goes back to the 'store' either on
the same page or
> a
> different page at AMSOIL.com - the 'store' window goes
to the correct
> page, but
> the 'store' window does NOT come on top. When they click
on a link to go
> back
> to the 'store' I need the 'store' window to come to the
top. If they have
> previously put something in the cart, and come back and
add something else
> to
> the cart in the 'store' by coming in from different
links on my site the
> 'store' is working correctly because I leave it open the
whole time.
>
> snipets of code that DreamWeaver is writing for my site
(the-oilman.com):
> from the head:
> <script>
> <!--
> CSAct[/*CMP*/ '129AABC1'] = new
Array(CSOpenWindow,/*URL*/
> '
http://www.amsoil.com/redirect.cgi?zo=52257&page=store','store',0,0,true,true,t
> rue,true,true,true,true);
> CSAct[/*CMP*/ '129AAC63'] = new
Array(CSOpenWindow,/*URL*/
> '
http://www.amsoil.com/redirect.cgi?zo=52257&page=store','store',0,0,true,true,t
> rue,true,true,true,true);
> CSAct[/*CMP*/ '10D39F40'] = new
Array(CSOpenWindow,/*URL*/
> '
http://www.amsoil.com/redirect.cgi?zo=52257&page=storefront/sso','store',0,0,tr
> ue,true,true,true,true,true,true);
> /
> function MM_openBrWindow(theURL,winName,features) {
//v2.0
> window.open(theURL,winName,features);
> }
> //-->
> </script>
>
> code from 2 different links that is using this script:
> <a href="
http://www.amsoil.com/redirect.cgi?zo=52257&page=storefront/sso"
> target="store" onClick="MM_openBrWindow('#','store','')"
> csclick="10D39F40">Buy
> Now</a>
> <a href="
http://www.amsoil.com/redirect.cgi?zo=52257&page=store"
> title="AMSOIL
> Store at AMSOIL.com" target="store"
>
onClick="MM_openBrWindow('http:www.amsoil.com/redirect.cgi?zo=52257&amp;page=sto
> re','store','')">On Line Store</a>
>
> I believe what I need is a longer javascript. Instead of
just
> "window.open" I
> need an "if" but my javascript knowledge is very, very
limited.
> I need it to first check that if the window named
'store' is open then
> 'focus'
> it, or if it is not open to open the window named
'store'.
> Will this fix my problem? If so, please help me write
the lines of code to
> do
> it.
> If this isn't the solution, what is the problem and the
solution?
>
> A separate question but related: if you look in the two
different links
> codes,
> in the function call one of them uses a 'null' page
reference and the
> other
> repeats the full link reference from the href= . Both
seem to work, but
> which
> is the correct or the preferred syntax. My guess is
there are some
> browsers
> that this will give a problem, but which way is
preferred.
>
> Don Dawson
> mailto:[email protected]
>

Similar Messages

  • Problem with Javascript and opening a new page

    Hi,
    I'm developping a website with Java Server Faces.
    I've a problem with JavaScript.
    I have a table, and each row of that table, has a button, to display more information about that specific row. I want to display this information in a new window. For this I want to use JavaScript.
    The new window, of course, needs some information of the other window, to show the right data.
    The first time I click the 'more-information-button', it works perfectly, but from than on, he keeps showing the same information...
    Here is my jsp-page of the first page (the one with the table):
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <f:view>
             <f:loadBundle basename="languages.MessageBundle" var="bundle"/>
            <html>
                <head>
                    <meta content="no-cache" http-equiv="Cache-Control"/>
                    <meta content="no-cache" http-equiv="Pragma"/>
                    <title>- UCV-Period -</title>
                    <link href="resources/stylesheet.css" rel="stylesheet" type="text/css"/>
                </head>
                <body style="-rave-layout: grid">
                        <h:dataTable binding="#{UcvPeriod.dataTable1}" headerClass="list-header" id="dataTable1" rowClasses="list-row-even,list-row-odd" rows="5"
                            style="left: 24px; top: 168px; position: absolute" value="#{UcvPeriod.dataTable1Model}" var="currentRow">
                            <h:column binding="#{UcvPeriod.column1}" id="column1">
                                <h:outputText binding="#{UcvPeriod.outputUcvPeriod}" id="outputUcvPeriod" value="#{currentRow['UCVPERIOD']}"/>
                                <f:facet name="header">
                                    <h:outputText binding="#{UcvPeriod.outputText2}" id="outputText2" value="#{bundle.ucvPeriod_columnHeader_ucvPeriod}"/>
                                </f:facet>
                            </h:column>
                            <h:column binding="#{UcvPeriod.column11}" id="column11">
                                <h:commandButton action="#{UcvPeriod.btnDetails_action}" binding="#{UcvPeriod.btnDetails}" id="btnDetails" value="+" onclick="window.open('Details.jsp')"/>
                                <f:facet name="header">
                                    <h:outputText binding="#{UcvPeriod.outputText21}" id="outputText21" value=""/>
                                </f:facet>
                            </h:column>
                        </h:dataTable>
                    </h:form>
                </body>
            </html>
        </f:view>
    </jsp:root>Here is my action, when someone clicks on the 'more-information-button':
    public String bthnDetails_action() {
       Object s = outputUcvPeriod.getValue();
       BigDecimal ucvPeriod = (BigDecimal)outputUcvPeriod.getValue();
       this.getSessionBean().setUcvPeriod(new Integer(ucvPeriod.intValue());
       return "detail_ucvperiod";
    }Here is my constructor of the Detailspage.
        public Details() {
             this.txtUcvPeriod.setValue(this.getSessionBean().getUcvPeriod());
        }Here is the navigation part for this part of my faces-config.xml .
    <navigation-rule>
       <from-view-id>/UcvPeriod.jsp</from-view-id>
       <navigation-case>
           <from-outcome>detail_ucvperiod</from-outcome>
           <to-view-id>/UcvPeriod.jsp</to-view-id>
       </navigation-case>
    </navigation-rule>Thx a lot....
    Anneke

    See the tutorial "Sharing Data Between Two Pages" at http://devservices.sun.com/premium/jscreator/standard/learning/tutorials/data_sharing_twopages.html and the FAQ "How can I pass data between pages without creating SessionBean variables in Creator?" at http://devservices.sun.com/premium/jscreator/standard/reference/faqs/technical/javasource/passing_data.html. Since you can open a new window when your button is clicked, the tutorial and FAQ will explain ways to pass your data to the new window.

  • Problem with JavaScript in URL iView

    Hi,
    I am facing a problem with javascript when i am trying to access my application through URL iView. In the javascript window.top is used to access the frames in the window. But the EP is not recognizing it as valid. what exctly the problem and please suggest me a solution.
    Ashok.

    Hi,,
    thanks for the quick reply. But what i asked was different. I will put it in different way. I have deployed a application in Web Application Server and trying to access it through URL iView. My application is pure J2EE application with html,jsp and JS files. In javascript we used window.top property of the java script which is working fine MS IE. The problem is window.top is a IE specific property which is not having any equallent open standerd so EP is throwing a java script error. As I know the only possible solution for this problem is inherating IE rendaring capabilities to iView(i.e iFrame). is there any way to do that?
    Ashok.

  • JSF problems with Javascript

    Hi everyone!!
    The situation is this: I have a datable with one of its columns make an h:commanLink, which has two f:params, its actionListener is a function of a ManagedBean. This is JSF, not MyFaces. In IE, When the link is pressed, it shows a javascript error: " 'elements.idVar' is null or it's not an object ", however in Firefox, it works perfectly. I have been looking for the problem and it have to do with this:
    </form><a href="# onclick="clearFormHiddenParams_formResultado('formResultado');document.forms['formResultado'['formResultado:_idcl'].value='formResultado:dtTablaResultados:0:_id10';document.forms['formResultado']['idVar'].value='37';document.forms['formResultado']['idMun'].value='168'; document.forms['formResultado'].submit(); return false;"><span id="formResultado:dtTablaResultados:0:itColumna3" title="AREA COSECHADA EN CULTIVOS PERMANENTES">1,230</span></a></td>
    </tr>
    <tr class="standardTable_Row2">
    <td><span id="formResultado:dtTablaResultados:1:itColumna1" style="text-align:center;" title="C&oacute;digo Municipio">718</span></td>
    <td><a href="javascript:void(0)" onclick="javascript:window.opener.opener.showLink('SASAIMA')"><span id="formResultado:dtTablaResultados:1:itColumna2_l" title="Municipio">SASAIMA</span></a></td>
    <td><form id="formResultado:dtTablaResultados:1:_id9" method="post" action="/ConsultaEstadisticasGeo/resultadoConsulta.jsf" enctype="application/x-www-form-urlencoded">
    <input type="hidden" name="com.sun.faces.VIEW" id="com.sun.faces.VIEW" value="_id39:_id41" /><input type="hidden" name="formResultado:dtTablaResultados:1:_id9" value="formResultado:dtTablaResultados:1:_id9" /><input type="hidden" name="idVar" /><input type="hidden" name="idMun" /><input type="hidden" name="formResultado:_idcl" />
    <script type="text/javascript">
    <!--
    function clearFormHiddenParams_formResultado_dtTablaResultados_1__id9(curFormName) {
    var curForm = document.forms[curFormName];
    curForm.elements['idVar'].value = null;
    curForm.elements['idMun'].value = null;
    curForm.elements['formResultado:_idcl'].value = null;
    //-->
    </script>
    the way JSF manage the params. The error, acdording to the message shonw by IE is in this line: curForm.elements['idVar'].value = null;
    The code of the JSP is this:
    <h:commandLink     actionListener="#{consultaEstadisticasMB.detalleEstadistica}">
         <f:param name="idVar" value="#{consultaEstadisticasMB.idColumna3}" id="idVar" />
         <f:param name="idMun" value="#{registro[0]}" id="idMun" />
         <h:outputText title="#{consultaEstadisticasMB.columna3}" id="itColumna3" value="#{registro[2]}" />
    </h:commandLink>
    Waht can i do? (Not using MyFaces, because I can�t do that)
    Thanks for your answers!!

    I have run into this same problem with javascript and the colon. I am not sure if the colon is a valid character for a javascript identifier (one would think the RI developers would have checked it out though!?!).
    Anyway, my workaround is to search through the Javascript DOM for the widget you want to obtain a reference to, using part of its id. After all, you know its id, you just can't use it as a javascript reference. In your Javascript code, do something like:
        var inputWidgets = document.getElementsByTagName("input");
        var targetInput;
        for(var i = 0; i < inputWidgets.length; i++)
           var inputId = inputWidgets.id;
    if(inputId.indexOf("yourInputId") != -1)
    targetInput = inputWidgets[i];
    break;
    It's a lot of effort to just get a reference to a form widget....but it works (I pasted in the code and changed it a bit, so it might not work as is, but at least it demonstrates the idea).

  • Problems with Italian version of Dreamweaver [subject edited by moderator]

    The italian version of this software doesn't match with the configurations in the tutorials and it's impossible to follow the procedure to learn how to use it!! I've spent more than two hours just to put the "split working area" in vertical with no results. No way to open the same tools. And then, where are the assets files to download??? I think it could be a wonderful idea give us something easier to learn, simply having giving us the right correspondence between the software (open for the first time after the download) and the video tutorials…please, in this condition I cannot work and so how can I do?
    Ciao
    Paolo

    Dear Murray,
    unfortunately I can't go on with this program…it's impossible without the CSS file showed on the tutorial…I've also tried to find something on the web and I've tried to install Adobe Widget Browser but it doesn't work!
    So I've lost a lot of hours and I'm very frustrated and disappointed…and then the Dreamweaver CC version I've downloaded from Creative Cloud is different from the one in the tutorials, so I can follow all the indications without stop and start searching somewhere the things…
    In this condition it's impossible to learn how to use this software…it's an incredible waste of time…and paying for that!!
    Il giorno 01/mar/2015, alle ore 20:17, paolo <[email protected]> ha scritto:
    I'm using just CC…
    Il giorno 01/mar/2015, alle ore 16:46, MurraySummers <[email protected]> ha scritto:
    >>
    >> Problems with Italian version of Dreamweaver
    >> created by MurraySummers in Dreamweaver support forum - View the full discussion
    >> Different language versions of the same version of DW are the same. What I mean by that is that no matter which REGIONALIZED version you are using, the interface should be the same. So even though you say you are using DW CC, is it CC2014, or CC2014.1, or just CC that you are using? (you can tell by looking under HELP > About Dreamweaver)
    >>
    >> 
    >> On this page - How to make and style a web page in Dreamweaver | Adobe Dreamweaver CC tutorials - there is a link to download the sample files right under the "Browse Dreamweaver CC Tutorials".
    >>
    >> If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7240860#7240860 and clicking ‘Correct’ below the answer
    >> Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    >> Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7240860#7240860
    >> To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"       
    >> Start a new discussion in Dreamweaver support forum by email or at Adobe Community
    >> For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.
    >

  • Webcontrol problems with javascript

    Hello,
    the page I want to navigate making me problems in my webcontrol. The same page works fine if I go there manually with the Internet Explorer. I force webcontrol to use another IE version than default. I changed regedit >
    HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION
    and a new key for my application with value 2af8(11000)
    If I do not force this version the used version in the webcontrol seems to be to old.
    I think that my application does not use the settings of my IE because if I use IE manually it works.
    I used Google and I can not find a property to force the webcontrol to activate javascript - it seems that I have to change this by the "global" settings.
    Edit: I do not exactly know if its javascript. The error is a script error.
    It does not help to suppress this errors - the page is not working correctly

    Hello,
    in the meantime I tried GeckoFX to solve the issue, but I get another problem later so I come back to the native webcontrol. To get help I will translate the error message because I can not attach a screenshot
    "Scripterror
    URL: http://www.transerv2000.de/DesktopModules/SNITNET_Metrix/js/rma_main.js
    Do you want to continue? Yes / No"
    Because I see the .js I think that this is an issue because of javascript.
    If I navigate to this site and do some work I have no problems. This is why I think that the used IE in my webcontrol is having other settings?!
    Please help and thanks alot.
    Edit: If I supress javascript errors, I got not Messagebox but the content dont work - so I really think that it is a problem with javascript. As I said, if I use the IE as application the page works fine.

  • I have a ipod classic 160GB , the problem with it is that it is dead no respond at all, i even tried to do a hard reboot, i tried to connect to itunes but it did not work, if somebody has a solution please let me know! the screen on the ipod shows nothing

    I have a ipod classic 160GB , the problem with it is that it is dead no respond at all, i even tried to do a hard reboot, i tried to connect to itunes but it did not work, if somebody has a solution please let me know! the screen on the ipod shows nothing........

    This is the iPod touch forum. I will request that you post be moved to the iPod Classic forum.

  • I have problems with my films that become slightly jerky after I have imported and edited them in iMovie and then burned them onto a DVD using iDVD. I can see the weak jerkiness when panning in both laterally and vertically. I shoot with a camcorder Canon

    I have problems with my films that become slightly jerky after I have imported
    and edited them in iMovie and then burned them onto a DVD using iDVD.
    I can see the weak jerkiness when panning in both laterally
    and vertically.
    I shoot with a camcorder Canon Vixia HF10. The camera has been set to deliver HD quality (1920x1080). But I have accidentally filmed with a frame rate of 60 (?).
    When I import the films in iMovie I have been asked if I want to change to frame rate 30 (instead of 25). I have chosen 30.
    Could it be the setting of a frame rate 60 in my camcorder that causes jerkiness when panning or what else?

    I have problems with my films that become slightly jerky after I have imported
    and edited them in iMovie and then burned them onto a DVD using iDVD.
    I can see the weak jerkiness when panning in both laterally
    and vertically.
    I shoot with a camcorder Canon Vixia HF10. The camera has been set to deliver HD quality (1920x1080). But I have accidentally filmed with a frame rate of 60 (?).
    When I import the films in iMovie I have been asked if I want to change to frame rate 30 (instead of 25). I have chosen 30.
    Could it be the setting of a frame rate 60 in my camcorder that causes jerkiness when panning or what else?

  • I have a problem with iPhone is that I can replace it at points of sale in the U.S. because I bought from Saudi Arabia because the problem I think in the hard ware software worked more than 3 times did not fix

    dears,
    I have a problem with iPhone is that I can replace it at points of sale in the U.S. because I bought from Saudi Arabia because the problem I think in the hard ware I do resoftware more than 3 times did not fix.
    Network also always missing.
    I am living in KS Wichita. I hope you help me pleas.
    Regards.

    iPhone warranty is not international. You will have to return your
    iPhone to Saudi Arabia for repair/replacement. Either take it back
    yourself or send to friend/relative for them to take to Apple. Apple
    will not accept international shipments for repair nor will Apple
    ship repaired/replaced iPhones out of the country where the repair
    was done.

  • I have an ipod nano 5th generation. the problem with it's that it doesn't show in itunes when connected to the laptop and it switches on on its own and songs start playing the battery gets consumed too fast after full charge. what is the actual problem?

    i have an ipod nano 5th generation. the problem with it's that it doesn't show in itunes when connected to the laptop and it switches on on its own and songs start playing the battery gets consumed too fast after full charge. what is the actual problem?

    What have you tried so far in terms of troubleshooting this issue?  Are you plugging the iPod into a high powered USB 2.0 port on the back of your PC? Have you tried a different USB cable?
    What happens if you try to reset the device with it still connected to the PC?
    How to reset iPod
    Has this iPod ever worked on this PC or is this the first time you have time you have tried connecting it?
    Have you carefully worked through each and every single suggestion in this Apple support document?
    iPod not recognized in 'My Computer' and in iTunes for Windows
    B-rock

  • I have a problem with disk utility that is not on my mac pro

    I have a problem with disk utility that is not on my mac pro

    Open your Applications folder then open the Utilities folder. It should be there.
    If not, click the magnifying glass icon top right corner of your screen. That's Spotlight.
    Type:   Disk Utility
    Hopefully it will show up.
    Mac Basics: Spotlight

  • I am having problems with certain websites that require adobe flash player because of the restrictions that apple has put in place. Is there a way to get to sites that require flash player?

    I am having problems with certain websits that require adobe flash player

    Please don't start the 1 millionth thread on this subject, which has been answered over and over and over and over and over and over and over.........Use the search bar and type flash and you'll see thousands of posts on this.

  • Problems with the summit that auto generate  t:panelTab

    Hi,
    I have a problem with the summit that auto generate <t:panelTab. When I submit with this button the bean PortfolioPageBean doesn�t recover the property contractListItem. However when I submit with <h:commandButton commandButton action="add", the bean recover information. What is the difference between these two types of submits?. This is my core:
    <h:form id="menuTag">
    <h:inputHidden id="contractListItem"
                   value="#{PortfolioPageBean.contractListItem}" />
    <h:commandButton action="add" id="buttonTab" value="Add" />
              <t:panelTabbedPane styleClass="tabbedPane"
                   activeTabStyleClass="activeTab" inactiveTabStyleClass="inactiveTab"
                   disabledTabStyleClass="disabledTab" activeSubStyleClass="activeSub"
                   inactiveSubStyleClass="inactiveSub" tabContentStyleClass="tabContent"
                   serverSideTabSwitch="true" id="menuTabs">
                   <t:panelTab id="tab1" styleClass="" label="Contract Listing">
                        <f:verbatim>
                             <br>
                        </f:verbatim>
                        <f:subview id="subtab1">
                             <jsp:include page="contract-list.jsp" />
                        </f:subview>
                   </t:panelTab>
                   <t:panelTab id="tab2" label="General Policy Details" style="align:center">
                        <h:outputText
                             value="#{PortfolioPageBean.contractListItem}"></h:outputText>
                        <f:verbatim>
                             <br><br><br>
                        </f:verbatim>
                        <f:subview id="subtab2">
                             <jsp:include page="general-policy.jsp" />
                        </f:subview>
                   </t:panelTab>
              </t:panelTabbedPane>
    </h:form>
    Thank for your time!!!

    Hi,
    I have a problem with the summit that auto generate <t:panelTab. When I submit with this button the bean PortfolioPageBean doesn�t recover the property contractListItem. However when I submit with <h:commandButton commandButton action="add", the bean recover information. What is the difference between these two types of submits?. This is my core:
    <h:form id="menuTag">
    <h:inputHidden id="contractListItem"
                   value="#{PortfolioPageBean.contractListItem}" />
    <h:commandButton action="add" id="buttonTab" value="Add" />
              <t:panelTabbedPane styleClass="tabbedPane"
                   activeTabStyleClass="activeTab" inactiveTabStyleClass="inactiveTab"
                   disabledTabStyleClass="disabledTab" activeSubStyleClass="activeSub"
                   inactiveSubStyleClass="inactiveSub" tabContentStyleClass="tabContent"
                   serverSideTabSwitch="true" id="menuTabs">
                   <t:panelTab id="tab1" styleClass="" label="Contract Listing">
                        <f:verbatim>
                             <br>
                        </f:verbatim>
                        <f:subview id="subtab1">
                             <jsp:include page="contract-list.jsp" />
                        </f:subview>
                   </t:panelTab>
                   <t:panelTab id="tab2" label="General Policy Details" style="align:center">
                        <h:outputText
                             value="#{PortfolioPageBean.contractListItem}"></h:outputText>
                        <f:verbatim>
                             <br><br><br>
                        </f:verbatim>
                        <f:subview id="subtab2">
                             <jsp:include page="general-policy.jsp" />
                        </f:subview>
                   </t:panelTab>
              </t:panelTabbedPane>
    </h:form>
    Thank for your time!!!

  • HT4889 After using migration assistant I have had problems with some apps that were brought down from App store, as well as IntelliJ that just doesnt want to start at all. Does it have anything to do with the UID being changed?

    After using migration assistant I have had problems with some apps that were brought down from App store, as well as IntelliJ that just doesnt want to start at all. Does it have anything to do with the UID being changed?
    13-07-03 6:24:12.447 PM com.apple.launchd.peruser.502[1632]: ([0x0-0x5be5be].com.jetbrains.intellij[5805]) Job failed to exec(3) for weird reason: 13

    What is the exact name of the application you're trying to launch? Is it in the Applications folder?

  • Dreamweaver CS5.5 file upload problems with javascript

    Hi,
    Maybe someone can help me. I have both CS4 and CS5.5 and Lion installed.
    When I upload files to the remote server, formatting for all source code (including javascript) is lost. And then any javascript functions on the website do not work. I have the same problem when uploading files with Filezilla.
    Another problem - probably related - is that under Firefox javascript of my local website does not work (it works on a fresh start, but only for the first link), while the remote site under Firefox works fine. Safari works both remotely and local.
    Now, when I boot the Mac from the Snow Leopard partition, everything works just fine. So it must have to do with Lion.
    Does anyone know how to fix this, please?

    Hi, thank you for helping.
    Line Break is set to CR (Macintosh). I don't know what OS our host server is running. I would assume it is either  Linux or Windows.
    On the other user account Line Break was set to LF (Unix), so I switched it on my account as well.
    After that the file transferred with the code intact. Just out of curiosity I switched the setting back, and it still works, but only for new files. Also, old files can no longer be deleted.
    Firefox hasn't changed. Under the other user the local site works, under my user, the scripts still don't work.
    So, I am very confused. I will give Apple a call to see, how I can reset the user preferences and report back.

Maybe you are looking for

  • Compiler will not run -- what to do?

    Just installed SDK -- cannot access the compiler. Followed the Install Instructions -- no error message. Server Admin Console runs just fine. Any suggestions?

  • Terminating Activity step with error

    Hi, I have an Activity step which task executes a method of a class. This method returns result code (and I do binding to WF) and if it is not 0 I would like to terminate this step (workitem) in error status. How is the best and easiest way to do thi

  • OBI Server XML Gateway

    I'm trying to import an XML document as a datasource in the repository. When I try to import it I get the following error: [nQSError: 46029] Failed to load the DLL C:\Oracle\OracleBI\server\Bin\nqsdbgatewayxml.dll. Check if 'NQS XML' database client

  • Importing images into Iphoto 06

    I thought I would try a small selection of images to import into iphoto 06 and made sure in the advanced preferences that I had the "copy files to iphoto library folder" unchecked so I would not get two copies of each photo. Afer the short import was

  • Workflow binding not working - authorization problem?

    Hi Experts, I have the following problem in 4.6C that happens only for a specific user, so maybe an authorization problem. There is a task in the workflow that calls a method with ME21N. The method takes the PO after the transaction call, creates a B