Jump Menu with Hide/Show Layers

Is it possible to set up a jump menu or list menu where each
item in the list controls layer visibility. Is it possible to
assign Hide/Show Layers behavior to an item in a menu?

You just need to do 2 things to make this happen. In the body
of the HTML add the call JS function:
quote:
function MM_callJS(jsStr) { //v2.0
return eval(jsStr)
Then in the form that contains the menu instead of using the
call to the Jump Menu script, use the call to the above script like
so:
quote:
<select name="jumpMenu" id="jumpMenu"
onchange="MM_callJS(jumpMenu.value)">
And make sure to set the values equal to the
MM_showHideLayers function for each menu item like this:
quote:
<option
value="MM_showHideLayers('apDiv2','','show','apDiv3','','hide','apDiv4','','hide')">Compa ny
A</option>
I just tried it on a sample page, and it works fine.

Similar Messages

  • Urgent !!! Master- Detail Search with Hide/Show option

    Hi,
    I have developed a master-detail OAF page with hide/show option.
    in my searching option i have both master and detail columns.
    How can i control detail level vo query.
    Eg. If i pass Item no in the searching option along with customer, i sould get only that item line for that CUST.
    I have created parameters in the main query and I am passing param values in a methos at AM.
    When i click on Show details its throwing exception.
    Can any one please help me how to acheive this. Its urgent...
    Thanks,

    Hi Gyan,
    Thanks for your reply.
    Master VO query:
    SELECT qfbp.pricing_attribute_context,
    qfbp.pricing_attribute,
    qfbp.comparison_operator_code,
    qfbp.pricing_attr_value_from,
    qfbp.pricing_attr_value_to,
    qfbp.adjustment_factor,
    qfbp.start_date_active,
    qfbp.end_date_active,
    qfbp.list_line_id,
    qfbp.factor_list_id
    FROM qpfv_factor_base_pricing_attrs qfbp
    WHERE qfbp.factor_list_id = NVL(:1,qfbp.factor_list_id)
    AND qfbp.pricing_attribute = NVL(:2,qfbp.pricing_attribute)
    AND qfbp.comparison_operator_code = NVL(:3,qfbp.comparison_operator_code)
    AND NVL(qfbp.pricing_attr_value_from,'xxxxx') = NVL(:4,NVL(qfbp.pricing_attr_value_from,'xxxxx'))
    AND NVL(qfbp.pricing_attr_value_to,'xxxxx') = NVL(:5,NVL(qfbp.pricing_attr_value_to,'xxxxx'))
    AND qfbp.adjustment_factor = NVL(:6,qfbp.adjustment_factor)
    Detail VO Query:
    SELECT qfapa.list_line_id, qfapa.pricing_attribute_context,
    qfapa.pricing_attribute, qfapa.pricing_attr_value_from,
    qfapa.pricing_attr_value_to, qfapa.factor_list_id,
    qfapa.comparison_operator_code, qfapa.pricing_attribute_id,
    qfapa.creation_date, qfapa.created_by, qfapa.last_update_date,
    qfapa.last_updated_by, qfapa.orig_sys_header_ref,
    qfapa.orig_sys_line_ref, qfapa.orig_sys_pricing_attr_ref
    FROM qpfv_factor_asso_pricing_attrs qfapa
    WHERE qfapa.pricing_attribute = NVL (:2, qfapa.pricing_attribute)
    AND qfapa.comparison_operator_code = NVL (:3, qfapa.comparison_operator_code)
    AND NVL (qfapa.pricing_attr_value_from, 'xxxxx') = NVL (:4, NVL (qfapa.pricing_attr_value_from, 'xxxxx'))
    AND NVL (qfapa.pricing_attr_value_to, 'xxxxx') = NVL (:5, NVL (qfapa.pricing_attr_value_to, 'xxxxx'))
    Iam using view link to display master detail results in one page.
    AM Code : Searcharttr method is for details VO.
    public void searchparams(OAPageContext pageContext, OAWebBean webBean)
    FactorListSearchVOImpl vo = getFactorListSearchVO1();
    String FactorlistName ="";
    String FactorListId ="";
    String PricingAttribute ="";
    String CompOperator ="";
    String PricingAttrValFrom ="";
    String PricingAttrValTo ="";
    String AdjustFactor ="";
    if (pageContext.getParameter("FactorListNameId")!=null&&!pageContext.getParameter("FactorListNameId").equals(""))
    FactorListId =pageContext.getParameter("FactorListId").toString();
    vo.setWhereClauseParam(0,FactorListId);
    else
    vo.setWhereClauseParam(0,null);
    if (pageContext.getParameter("BaseAttrTypeId")!=null&&!pageContext.getParameter("BaseAttrTypeId").equals(""))
    PricingAttribute =pageContext.getParameter("BaseAttrTypeId").toString();
    vo.setWhereClauseParam(1,PricingAttribute);
    else
    vo.setWhereClauseParam(1,null);
    if (pageContext.getParameter("BaseOperator")!=null&&!pageContext.getParameter("BaseOperator").equals(""))
    CompOperator =pageContext.getParameter("BaseOperator").toString();
    vo.setWhereClauseParam(2,CompOperator);
    else
    vo.setWhereClauseParam(2,null);
    if (pageContext.getParameter("BaseAttrValueFrom")!=null&&!pageContext.getParameter("BaseAttrValueFrom").equals(""))
    PricingAttrValFrom =pageContext.getParameter("BaseAttrValueFrom").toString();
    vo.setWhereClauseParam(3,PricingAttrValFrom);
    else
    vo.setWhereClauseParam(3,null);
    if (pageContext.getParameter("BaseAttrValueTo")!=null&&!pageContext.getParameter("BaseAttrValueTo").equals(""))
    PricingAttrValTo =pageContext.getParameter("BaseAttrValueTo").toString();
    vo.setWhereClauseParam(4,PricingAttrValTo);
    else
    vo.setWhereClauseParam(4,null);
    if (pageContext.getParameter("BaseAdustFactor")!=null&&!pageContext.getParameter("BaseAdustFactor").equals(""))
    AdjustFactor =pageContext.getParameter("BaseAdustFactor").toString();
    vo.setWhereClauseParam(5,AdjustFactor);
    else
    vo.setWhereClauseParam(5,null);
    public void searchattrparams(OAPageContext pageContext, OAWebBean webBean)
    FactorListSearchVOImpl vo = getFactorListSearchVO1();
    String AssoAttribute ="";
    String AssoOperator ="";
    String AssoAttrValFrom ="";
    String AssoAttrValTo ="";
    if (pageContext.getParameter("AsscAttrType1")!=null&&!pageContext.getParameter("AsscAttrType1").equals(""))
    AssoAttribute =pageContext.getParameter("AsscAttrType1").toString();
    vo.setWhereClauseParam(1,AssoAttribute);
    else
    vo.setWhereClauseParam(1,null);
    if (pageContext.getParameter("AsscOperator1")!=null&&!pageContext.getParameter("AsscOperator1").equals(""))
    AssoOperator =pageContext.getParameter("AsscOperator1").toString();
    vo.setWhereClauseParam(2,AssoOperator);
    else
    vo.setWhereClauseParam(2,null);
    if (pageContext.getParameter("AsscAttrValueFrom1")!=null&&!pageContext.getParameter("AsscAttrValueFrom1").equals(""))
    AssoAttrValFrom =pageContext.getParameter("AsscAttrValueFrom1").toString();
    vo.setWhereClauseParam(3,AssoAttrValFrom);
    else
    vo.setWhereClauseParam(3,null);
    if (pageContext.getParameter("AsscAttrValueTo1")!=null&&!pageContext.getParameter("AsscAttrValueTo1").equals(""))
    AssoAttrValTo =pageContext.getParameter("AsscAttrValueTo1").toString();
    vo.setWhereClauseParam(4,AssoAttrValTo);
    else
    vo.setWhereClauseParam(4,null);
    Iam getting below error:
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT qfapa.list_line_id, qfapa.pricing_attribute_context,
    qfapa.pricing_attribute, qfapa.pricing_attr_value_from,
    qfapa.pricing_attr_value_to, qfapa.factor_list_id,
    qfapa.comparison_operator_code, qfapa.pricing_attribute_id,
    qfapa.creation_date, qfapa.created_by, qfapa.last_update_date,
    qfapa.last_updated_by, qfapa.orig_sys_header_ref,
    qfapa.orig_sys_line_ref, qfapa.orig_sys_pricing_attr_ref
    FROM qpfv_factor_asso_pricing_attrs qfapa
    WHERE qfapa.pricing_attribute = NVL (:2, qfapa.pricing_attribute)
    AND qfapa.comparison_operator_code = NVL (:3, qfapa.comparison_operator_code)
    AND NVL (qfapa.pricing_attr_value_from, 'xxxxx') = NVL (:4, NVL (qfapa.pricing_attr_value_from, 'xxxxx'))
    AND NVL (qfapa.pricing_attr_value_to, 'xxxxx') = NVL (:5, NVL (qfapa.pricing_attr_value_to, 'xxxxx'))) QRSLT WHERE (LIST_LINE_ID = :1)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2970)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2767)
         at OA.jspService(OA.jsp:41)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01008: not all variables bound

  • Hide/Show layers with Javascript

    Hello,
    I am trying to find a Javascript method for hiding/showing layers in a pdf document. I would like to be able to use an if/else statement to set the visibility of multiple layers.
    Let's say I have 5 layers on a single page, all set to hidden by default. This page also has a field with 5 options relating to each of the 5 layers. Once an option is selected, an if/else will use this method to set the appropriate layer to visible.
    Thank you!

    Here is another way to satisfy your layer requirements in PDF.
    1. Create a Field (type: button) for each layer. Suppose the five “layers” are called “LayerButton1”, “LayerButton2”, “LayerButton3”, “LayerButton4”, and “LayerButton5” (using Acrobat Professional or using the doc.addField API).
    2. Store an image for each layer (using Acrobat Professional or using the buttonSetIcon API).
    3. Position each button on the page anywhere you want (using the rect property)
    4. Each option that controls the visibility of a respective “layer” may also be a button. Create a Field (type: button) for each control.  Suppose the five “control buttons” are called “ToggleLayerButton1”, “ToggleLayerButton2”, “ToggleLayerButton3”, “ToggleLayerButton4”, and “ToggleLayerButton5”.
    5. Position each control button on the page anywhere you want.
    6. For ToggleLayerButton1, add the following MouseUp action (using Acrobat Professional or using the Field.setAction API):
      var fld = this.getField("Button1");
      if (fld.display == display.hidden)
        fld.display = display.visible;
      else
        fld.display = display.hidden;
    7. Repeat the MouseUp action for the other control buttons.
    I hope this helps. - john

  • Jump menu with pdfs issue?

    Im using a mac with cs3 Adobe Suite. Using Dreamweaver, the insert form/jump menu i had pdfs that were on the server already, so when you select a pdf itll pop up and be readable or downloadable. No problems, now i recieved new pdfs, not on the server, (this is how it was wanted) but in a file folder in my directory and now only in firefox will they work, but not internet explorer which is the most current, tried on several machines. Says it cant find the file. I also moved the whole website from my mac to a pc for testing. I get the same errors on two different pcs.  Do these pdfs have to be preloaded on a server instead of just being in a file directory? Hope that explains it, new to this somewhat. Btw, the whole website is offline and not uploaded yet fyi.   Thank you

    Here ya go, thank you
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd"><html><!-- InstanceBegin template="/Templates/template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>MSDS</title>
    <!-- InstanceEndEditable -->
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <!--[if lte IE 7]>
    <style>
    #menuwrapper, #p7menubar ul a {height: 1%;}
    a:active {width: auto;}
    </style>
    <![endif]-->
    <!-- InstanceBeginEditable name="head" -->
    <script type="text/javascript">
    <!--
    function MM_jumpMenu(targ,selObj,restore){ //v3.0
      eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
      if (restore) selObj.selectedIndex=0;
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <style type="text/css">
    <!--
    .style6 {
        color: #000000;
        font-family: Geneva, Arial, Helvetica, sans-serif;
        font-size: 12px;
    -->
    </style>
    <style type="text/css">
    <!--
    .style8 {
        font-size: 20px;
        font-family: Geneva, Arial, Helvetica, sans-serif;
        color: #0E5CAC;
        font-weight: bold;
    -->
    </style>
    <style type="text/css">
    <!--
    .style9 {
        color: #0E5CAC;
        font-weight: bold;
        font-family: Geneva, Arial, Helvetica, sans-serif;
        font-size: 12px;
    -->
    </style>
    <!-- InstanceEndEditable -->
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    <style type="text/css">
    <!--
    body {
        margin-top: 0px;
        background-image: url(../images/home%20page%20images/17c.png);
        background-repeat: repeat;
        margin-bottom: 0px;
        background-color: #94AEDB;
    -->
    </style>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <!-- InstanceParam name="OptionalRegion1" type="boolean" value="true" --><!-- InstanceParam name="OptionalRegion2" type="boolean" value="true" -->
    <style type="text/css">
    <!--
    .style3 {
        font-family: Geneva, Arial, Helvetica, sans-serif;
        font-weight: normal;
        font-size: 11px;
        color: #FFFFFF;
    .style4 {
        color: #000000;
        font-family: Geneva, Arial, Helvetica, sans-serif;
        font-size: 12px;
    a:link {
        text-decoration: none;
    -->
    </style>
    </head>
    <body onLoad="P7_ExpMenu();MM_preloadImages('../images/home page images/traffic 2.png','../images/home page images/traffic 4.png','../images/home page images/pic e1a.png','../images/home page images/s1.png','../images/home page images/em2a.png','../images/home page images/easy 2.png')">
    <table width="802" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
    <!--DWLayoutTable-->
    <tr>
    <td height="96" colspan="5" valign="top" bgcolor="#000000"><img src="../images/home page images/top banner.png" alt="top banner" width="801" height="96"></td>
    </tr>
    <tr>
    <td height="27" colspan="5" align="center" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000">
    <!--DWLayoutTable-->
    <tr>
    <td width="140" height="27"> </td>
    <td width="541" align="center" valign="middle" bgcolor="#000000"><ul id="MenuBar2" class="MenuBarHorizontal">
    <li><a href="../index.html">Home</a> </li>
    <li><a href="#" class="MenuBarItemSubmenu">Products</a>
    <ul>
    <li><a href="#" class="MenuBarItemSubmenu">Equipment</a>
    <ul>
    <li><a href="superstriper.html">Super Striper</a></li>
    <li><a href="athleticstriper.html">Athletic Striper</a></li>
    <li><a href="easymarker.html">Easy Marker</a></li>
    </ul>
    </li>
    <li><a href="#" class="MenuBarItemSubmenu">Paint</a>
    <ul>
    <li><a href="trafficpaint.html">Traffic </a></li>
    <li><a href="athleticpaint.html">Super Stripe Athletic </a></li>
    <li><a href="Water Born Paint.html">Water Born Athletic </a></li>
    <li><a href="Ground Paint.html">Marks All </a></li>
    <li><a href="easymarkerpaint.html">Easy Marker </a></li>
    </ul>
    </li>
    <li><a href="accessories.html" class="MenuBarItemSubmenu">Accessories</a>
    <ul>
    <li><a href="cones.html">Safety Cones</a></li>
    <li><a href="whiskers.html">6&quot; Whiskers</a></li>
    <li><a href="tape.html">Flagging Tape</a></li>
    <li><a href="vests.html">Safety Vests</a></li>
    <li><a href="flags.html">Utility Flags</a></li>
    <li><a href="stencils.html">Stencils</a></li>
    </ul>
    </li>
    <li><a href="hurracan.html">Hurr-a-Can</a></li>
    <li><a href="#" class="MenuBarItemSubmenu">New Products</a>
    <ul>
    <li><a href="Water Born Paint.html">Water Born Athletic</a></li>
    <li><a href="Ground Paint.html">Marks All</a></li>
    <li><a href="hurracan.html">Hurracan </a></li>
    </ul>
    </li>
    </ul>
    </li>
    <li><a class="MenuBarItemSubmenu" href="#">Services</a>
    <ul>
    <li><a href="About Us.html">About Us</a></li>
    <li><a href="contact.html">Contact</a> </li>
    <li><a href="dealer.html">Dealer</a></li>
    <li><a href="Faq.html">FAQ</a></li>
    <li><a href="guarantee.html">Guarantees</a></li>
    <li><a href="MSDS.html">MSDS</a></li>
    <li><a href="news.html">News</a></li>
    <li><a href="registration.html">Register </a></li>
    <li><a href="return policy.html">Return Policy</a></li>
    <li><a href="testimonial.html">Testimonials</a></li>
    </ul>
    </li>
    </ul></td>
    <td width="121"> </td>
    </tr>
    </table></td>
    </tr>
    <tr>
    <td height="4" colspan="5" valign="top"><img src="../images/home page images/strip.png" alt="graphic stripe" width="802" height="4"></td>
    </tr>
    <tr>
    <td width="54" rowspan="2" align="left" valign="top"><img src="../images/home page images/striping side.png" alt="striping side" width="52" height="557"></td>
    <td width="17" height="556"> </td>
    <td colspan="2" rowspan="2" valign="bottom"><!-- InstanceBeginEditable name="main info ediable" -->
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
    <!--DWLayoutTable-->
    <tr>
    <td width="26" height="7"></td>
    <td width="225"></td>
    <td width="13"></td>
    <td width="77"></td>
    <td width="10"></td>
    <td width="235"></td>
    <td width="53"></td>
    <td width="30"></td>
    <td width="7"></td>
    </tr>
    <tr>
    <td height="27" colspan="2" valign="bottom" class="style8">MSDS</td>
    <td> </td>
    <td colspan="4" rowspan="2" valign="top"><form name="form" id="form">
    <select name="jumpMenu2" id="jumpMenu2" onChange="MM_jumpMenu('parent',this,0)">
    <option value="../MSDS /MSDS-16 AWBCW1SD.pdf">MSDS-16 AWBCW1SD</option>
    <option value="New fvs website /MSDS /MSDS-16 AWBCW1SD.pdf">jkj</option>
    </select>
    </form>
    </td>
    <td> </td>
    <td></td>
    </tr>
    <tr>
    <td height="54"> </td>
    <td></td>
    <td></td>
    <td> </td>
    <td></td>
    </tr>
    <tr>
    <td height="64" colspan="4" valign="top"><p align="justify"><span class="style6">Click on the scroll down box and select the
    MSDS for your product.
    You will need Adobe Acrobat Reader to view
    and print the MSDS documents. You can go
    to this link to download the </span><span class="style12 style11"><strong><a href="http://www.adobe.com/products/acrobat/readstep2_allversions.html" class="style9">Adobe Acrobat Reader.</a></strong></span><br>
    </p></td>
    <td> </td>
    <td colspan="3" valign="top"><form name="form1" method="post" action="">
    <label></label><p>
    <select name="jumpMenu" id="jumpMenu" onChange="MM_jumpMenu('parent',this,0)">
    <option selected>Choose a PDF</option>
    <option value="../MSDS/MSDS-16 CHBE1D.pdf">Easy Marker Chalk Blue</option>
    <option value="../MSDS /MSDS-16 CHCW1D.pdf">Easy Marker Chalk White</option>
    <option value="../MSDS /MSDS-16 CHHO1D.pdf">Easy Marker Hot Orange</option>
    <option value="../MSDS /MSDS-16 CHRC1D.pdf">Easy Marker Chalk Brilliant Red Cerise</option>
    <option value="../MSDS /MSDS-16 CHRO1D.pdf">Easy Marker Chalk Blazing Red Orange</option>
    <option value="../MSDS /MSDS-16 CHRU1D.pdf">Easy Marker Chalk Red</option>
    <option value="../MSDS /MSDS-16 CHYU1D.pdf">Easy Marker Chalk Yellow</option>
    <option value="../MSDS /MSDS-16 ETAM2D.pdf">Easy Marker Aluminum</option>
    <option value="../MSDS /MSDS-16 ETBE2D.pdf">Easy Marker Blue</option>
    <option value="../MSDS /MSDS-16 ETBK2D.pdf">Easy Marker Black</option>
    <option value="../MSDS /MSDS-16 ETBN2D.pdf">Easy Marker Brown</option>
    <option value="../MSDS /MSDS-16 ETCW3D.pdf">Easy Marker White</option>
    <option value="../MSDS /MSDS-16 ETGN2D.pdf">Easy Marker Green</option>
    <option value="../MSDS /MSDS-16 ETOU2D.pdf">Easy Marker Orange</option>
    <option value="../MSDS /MSDS-16 ETRU2D.pdf">Easy Marker Red</option>
    <option value="../MSDS /MSDS-16 ETYU2D.pdf">Easy Marker Yellow</option>
    <option value="../MSDS /MSDS-16 ETGD2D.pdf">Easy Marker Goldenrod Yellow</option>
    <option value="../MSDS /MSDS-16 ETRO2D.pdf">Easy Marker Blazing Red Orange</option>
    <option value="../MSDS /MSDS-16 ETRC2D.pdf">Easy Marker Brilliant Red Cerise</option>
    <option value="../MSDS /MSDS-16 ETFY2D.pdf">Easy Marker Fluorescent Yellow</option>
    <option value="../MSDS /MSDS-16 ETHO2D.pdf">Easy Marker Fluorescent Hot Orange</option>
    <option value="../MSDS /MSDS-16 ETMV2D.pdf">Easy Marker Fluorescent Mauve</option>
    <option value="../MSDS /MSDS-16 ETNG2D.pdf">Easy Marker Fluorescent Nature Green</option>
    <option value="../MSDS /MSDS-16 ETSR2D.pdf">Easy Marker Fluorescent Scarlet Red</option>
    <option value="../MSDS /MSDS-16 HAC12.pdf">Hurr-a-can</option>
    <option value="../MSDS /MSDS-16 MABE2D.pdf">Marks All Blue</option>
    <option value="../MSDS /MSDS-16 MACW2D.pdf">Marks All White</option>
    <option value="../MSDS /MSDS-16 MAGN2D.pdf">Marks All Green</option>
    <option value="../MSDS /MSDS-16 MAHO1D.pdf">Marks All Hot Orange</option>
    <option value="../MSDS /MSDS-16 MAOU2D.pdf">Marks All Orange</option>
    <option value="../MSDS /MSDS-16 MARC1D.pdf">Marks All Brilliant Red Cerise</option>
    <option value="../MSDS /MSDS-16 MARU2D.pdf">Marks All Red</option>
    <option value="../MSDS /MSDS-16 MAYU2D.pdf">Marks All Yellow</option>
    <option value="../MSDS /MSDS-16 AWBCW1SD.pdf">Super Stripe Athletic Water Born White</option>
    <option value="../MSDS /MSDS-16 STBE2SD.pdf">Super Stripe Athletic White</option>
    <option value="../MSDS /MSDS-16 SSAO2SD.pdf">Super Stripe Athletic Blue</option>
    <option value="../MSDS /MSDS-16 SSAO2SD.pdf">Super Stripe Athletic Fluorescent Nature Green</option>
    <option value="../MSDS /MSDS-16 SSAO2SD.pdf">Super Stripe Athletic Fluorescent Hot Orange</option>
    <option value="../MSDS /MSDS-16 SSAY2SD.pdf">Super Stripe Athletic Fluorescent Scarlet Red</option>
    <option value="../MSDS /MSDS-16 SSAY2SD.pdf">Super Stripe Athletic Fluorescent Yellow</option>
    <option value="../MSDS /MSDS-16 STBE2SD.pdf">Super Supreme Traffic Blue</option>
    <option value="../MSDS /MSDS-16 STCW2SD.pdf">Super Supreme Traffic Black</option>
    <option value="../MSDS /MSDS-16 STCW2SD.pdf">Super Supreme Traffic White</option>
    <option value="../MSDS /MSDS-16 STRD2SD.pdf">Super Supreme Traffic Red</option>
    <option value="../MSDS /MSDS-16 STYU2SD.pdf">Super Supreme Traffic Yellow</option>
    <option value="../MSDS /MSDS-16 TBE2SD.pdf">Super Stripe Traffic Blue</option>
    <option value="../MSDS /MSDS-16 TBK2SD.pdf">Super Stripe Traffic Black</option>
    <option value="../MSDS /MSDS-16 TCW2SD.pdf">Super Stripe Traffic White</option>
    <option value="../MSDS /MSDS-16 TGN2SD.pdf">Super Stripe Traffic Green</option>
    <option value="../MSDS /MSDS-16 TGY2SD.pdf">Super Stripe Traffic Grey</option>
    <option value="../MSDS /MSDS-16 TOU2SD.pdf">Super Stripe Traffic Orange</option>
    <option value="../MSDS /MSDS-16 TRU2SD.pdf">Super Stripe Traffic Red</option>
    <option value="../MSDS /MSDS-16 TYU2SD.pdf">Super Stripe Traffic Yellow</option>
    </select>
    </p>
    </form></td>
    <td> </td>
    </tr>
    <tr>
    <td height="27"> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td height="319"> </td>
    <td colspan="5" align="center" valign="top"><img src="../images/msds/blue can glow4.png" alt="msds graphic image" width="264" height="242"></td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>
    </table>
    <!-- InstanceEndEditable --></td>
    <td width="55" align="left" valign="top"><div align="right"><img src="../images/home page images/marking side.png" alt="marking side" width="52" height="556"></div></td>
    </tr>
    <tr>
    <td height="1"></td>
    <td></td>
    </tr>
    <tr>
    <td height="4" colspan="5" valign="top"><img src="../images/home page images/strip.png" alt="graphic stripe" width="802" height="4"></td>
    </tr>
    <tr>
    <td height="53" colspan="2" align="center" valign="middle" bgcolor="#000000"><img src="../images/home page images/lifetime_guarantee 2.png" alt="lifetime guarantee" width="40" height="40"></td>
    <td width="660" valign="middle" bgcolor="#000000"><div align="center"><span class="style3"> We guarantee our Stripers and Easy Markers FOR LIFE and they will be repaired or <br>
    replaced FREE of charge! We guarantee our paint for 10 FULL YEARS to empty completely and not clog!</span></div></td>
    <td colspan="2" align="center" valign="middle" bgcolor="#000000"><img src="../images/home page images/10year_guarantee 2.png" alt="10 logo" width="40" height="40"></td>
    </tr>
    <tr>
    <td height="139" colspan="5" valign="middle" bgcolor="#000000"><!-- InstanceBeginEditable name="EditRegion6" -->
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
    <!--DWLayoutTable-->
    <tr>
    <td width="135" height="125" valign="top"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('traffic 1','','../images/home page images/traffic 2.png',1)"><img src="../images/home page images/traffic 1.png" alt="traffic 1" name="traffic 1" width="134" height="125" border="0"></a></td>
    <td width="134" valign="top"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('traffic 2','','../images/home page images/traffic 4.png',1)"><img src="../images/home page images/traffic 3.png" alt="traffic 2" name="traffic 2" width="134" height="125" border="0"></a></td>
    <td width="134" valign="top"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('athletic','','../images/home page images/pic e1a.png',1)"><img src="../images/home page images/h1a.png" alt="athletic" name="athletic" width="134" height="125" border="0"></a></td>
    <td width="134" valign="top"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('athletic 2','','../images/home page images/s1.png',1)"><img src="../images/home page images/s1a.png" alt="athletic 2" name="athletic 2" width="134" height="125" border="0"></a></td>
    <td width="134" valign="top"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('mark','','../images/home page images/em2a.png',1)"><img src="../images/home page images/em4a.png" alt="mark" name="mark" width="134" height="125" border="0"></a></td>
    <td width="131" valign="top"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('mark 2','','../images/home page images/easy 2.png',1)"><img src="../images/home page images/easy 1.png" alt="mark 2" name="mark 2" width="132" height="125" border="0"></a></td>
    </tr>
    </table>
    <!-- InstanceEndEditable --></td>
    </tr>
    <tr>
    <td height="35" colspan="5" align="center" valign="top" bgcolor="#000000"><div align="center" class="style3">640 Industrial Drive, Cary IL 60013                  (800) 323-4700                      Fax(847) 639-8190<br>
    Copyright &copy;  All Rights Reserved </div></td>
    </tr>
    <tr>
    <td height="4" colspan="5" valign="top"><img src="../images/home page images/strip.png" alt="graphic stripe" width="802" height="4"></td>
    </tr>
    <tr>
    <td height="1"></td>
    <td></td>
    <td></td>
    <td width="16"></td>
    <td></td>
    </tr>
    </table>
    <script type="text/javascript">
    <!--
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    <!-- InstanceEnd --></html>
    <script type="text/javascript" src="p7exp/p7exp.js"></script>

  • Error while trying to search in advanced table with hide/show region

    Hi
    I have search region and a results table with a hide.show in it.I did a search initially and got the results.I clicked on the hide/show region to see the details.
    I put another search criteria in the search region and tried to do a search.
    I am getting the following error
    The search cannot be executed because the table has pending changes that would be lost...
    Can anybody help me on this please....
    Message was edited by:
    user580745

    Any setter/getter method being used on hide/show action? How are you enabling the details? Is there a transient column in your VO?
    --Shiv                                                                                                                                                                                                                                                                                       

  • Hide/Show layers during playback

    Hi, everyone
    I want to use a layer as a subtitle track, and I want to be
    able to show/hide it by clicking a button. Any tips?
    Thanks.
    Dan

    you can dynamically control layers during runtime - your
    timeline becomes flattened upon export -
    copy/paste contents of layer into a Movie Clip (MCs are
    dynamic and meant to be controlled via
    actionscript) and then set it's visability to true/false via
    a button during runtime.
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    aixamarquez wrote:
    > Hi, everyone
    >
    > I want to use a layer as a subtitle track, and I want to
    be able to show/hide it by clicking a button. Any tips?
    >
    > Thanks.
    >
    > Dan

  • Hide / Show Layers onLoad?

    Using a radio button group, I am determining if a client is
    using a transmission interval. (radio button's are not showing
    below).
    Use Transmission Interval: NO YES
    Depending on the choice made - I am displaying the applicable
    layer which contains other options. Here is the code for the radio
    buttons.
    <input type="radio" <!--(ckmtroc1)--> name="mtrocc"
    value="0"
    onClick="MM_showHideLayers('Layer1','','hide','Layer7','','show','Layer2','','hide','Laye r3','','hide','Layer4','','hide','Layer5','','hide','Layer6','','hide')">NO
    <input type="radio" <!--(ckmtroc2)--> name="mtrocc"
    value="1"
    onClick="MM_showHideLayers('Layer1','','show','Layer7','','hide','Layer2','','hide','Laye r3','','hide','Layer4','','hide','Layer5','','hide','Layer6','','hide')">YES
    The concept is working as the correct information is coming
    to our servers and visa versa...however...if a person wants to view
    or change the information the initial state of the page is that the
    correct button is selected, but the associated layer is not
    displaying onload.
    You have to reclick the radio button at each step because of
    the onClick function. We are able to determine if the button is
    selected and send the applicable instructions when the page is
    loaded (i.e. show or hide ... or ... change onClick to onLoad - but
    I can't get the behavior assigned to the radio button - and not
    sure if I am even using the correct behavior.
    If I am not explaining myself correctly - please advise and I
    will explain more.

    What about putting the MM_ShowHideLayers script in a function
    that
    determines the state of the radio button, and then using that
    function
    OnLoad and OnClick?
    "OllieGirl1" <[email protected]> wrote in
    message
    news:ea8dig$6mt$[email protected]..
    > Using a radio button group, I am determining if a client
    is using a
    > transmission interval. (radio button's are not showing
    below).
    >
    >
    Use Transmission Interval: NO YES
    >
    > Depending on the choice made - I am displaying the
    applicable layer which
    > contains other options. Here is the code for the radio
    buttons.
    >
    > <input type="radio" <!--(ckmtroc1)-->
    name="mtrocc" value="0"
    >
    onClick="MM_showHideLayers('Layer1','','hide','Layer7','','show','Layer2','','hi
    >
    de','Layer3','','hide','Layer4','','hide','Layer5','','hide','Layer6','','hide')
    > ">NO
    > <input type="radio" <!--(ckmtroc2)-->
    name="mtrocc" value="1"
    >
    onClick="MM_showHideLayers('Layer1','','show','Layer7','','hide','Layer2','','hi
    >
    de','Layer3','','hide','Layer4','','hide','Layer5','','hide','Layer6','','hide')
    > ">YES
    >
    > The concept is working as the correct information is
    coming to our servers
    > and
    > visa versa...however...if a person wants to view or
    change the information
    > the
    > initial state of the page is that the correct button is
    selected, but the
    > associated layer is not displaying onload.
    >
    > You have to reclick the radio button at each step
    because of the onClick
    > function. We are able to determine if the button is
    selected and send the
    > applicable instructions when the page is loaded (i.e.
    show or hide ...
    > or
    > ... change onClick to onLoad - but I can't get the
    behavior assigned to
    > the
    > radio button - and not sure if I am even using the
    correct behavior.
    >
    > If I am not explaining myself correctly - please advise
    and I will explain
    > more.
    >
    >
    >

  • Looking for a way to create a pop-up menu with two sub-layers

    I'm looking for a solution in Fireworks CS3: creating a
    pop-up menu which goes two deep instead of the standard one-deep.
    TOP LEVEL > SECOND LEVEL > THIRD LEVEL
    Does anyone know if this is possible?
    Thanks!

    http://www.projectseven.com/
    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
    ==================
    "Jim Babbage .:CMX:. & .:Adobe Community Expert:."
    <[email protected]> wrote in message
    news:ga4amp$4ci$[email protected]..
    > paulkirtley wrote:
    >> I'm looking for a solution in Fireworks CS3:
    creating a pop-up menu
    >> which goes two deep instead of the standard
    one-deep. TOP LEVEL >
    >> SECOND LEVEL > THIRD LEVEL
    >>
    >> Does anyone know if this is possible?
    >>
    >> Thanks!
    >>
    > Please don't so this in FW. FW is primarily a web
    graphics and prototyping
    > tool, not a web page creator. There are better options
    out there, both
    > free and commercial.
    >
    > Check out Project Seven for several options in this
    area.
    >
    > --
    > Jim Babbage - .:Community MX:. & .:Adobe Community
    Expert:.
    >
    http://www.communityMX.com/
    > CommunityMX - Free Resources:
    >
    http://www.communitymx.com/free.cfm
    > ---
    > .:Adobe Community Expert for Fireworks:.
    > Adobe Community Expert
    >
    http://tinyurl.com/2a7dyp
    > ---
    > See my work on Flickr
    >
    http://www.flickr.com/photos/jim_babbage/

  • UIX Layout with Hide/Show

    Hi,
    I've an UIX page with a flowLayout. The flowLayout have an internal labeledFieldLayout with several messageTextInputs. As is, the layout is perfect and completely aligned.
    Now, I added a "hideShow" with a flowLayout and inside a labeledFieldLayout with several messageTextInputs. If I expand the hideShow all the contents inside it are displayed on the left side of the page and does not look aligned with the rest of the page.
    This is an example:
       messageText1
       messageText2
       +hideShow (expanded)
    messageText3
    messageText4  // Last message inside the hideShow
       messageText5How can I keep the same alignment across the entire page?
    Thanks in advance!
    Gerardo

    You should only put message components in labeledFieldLayout. You can try adding a stackLayout, so you have something like this:
    stackLayout
    labeledFieldLayout
    message components inside labeledFieldLayout
    hideShow at level of labeledFieldLayout
    labeledFieldLayout
    the other message components inside labeledFieldLayout.
    Jeanne

  • Jump menu to anchor created by javascript

    I have a page that shows sample images from a client's book
    using a javascript gallery found at this site
    http://www.couloir.org/js_slideshow/
    It works great. The script advances the pages by using
    Element.setHref(this.prevLink, "#" + (photoId+1)); so that when
    next or previous is clicked, it creates a link at the top like
    www.mypage.com/book.htm#2 www.mypage.com/book.htm#3 etc.
    My client however would also like a list of the pages
    available from a menu so the viewer can jump to any page at any
    time. I've created a jump menu with the links for each of the 37
    pages. However, when selected, the url appears in the top address
    bar, but the page will not jump unless I hit Enter on the keyboard.
    I've tried using a Go button, and same thing.
    Any other external link will function from teh menu fine, so
    I think it has something to do with the fact that these # pages
    aren't really anchors on the same page, beacuse the javascript
    creates them. But since they do work when I hit Enter, I'm
    wondering if there is a way I can get the menu to load them.
    Any suggestions would be appreciated. The sample I'm working
    on is at
    http://www.personalbestseminars.com/reframeyourblame/view_inside/index.htm
    Thanks!

    Hi Lucas
    Answering the questions :
    1. You are referring to auto scroll position  , where the users while scrolling should stop at a fixed position on page thus jumping to anchor position as you have mentioned, something like this :
    http://www.apple.com/iphone-5s/. Unfortunately the exact effect cannot be achieved in Muse but anchor to fixed page position and scroll can be setup.
    2. You can try applying scroll to the items , for example insert the squares in some container so that they are grouped and then apply scroll to container with no left/right movement , this would fix the position of container on page irrespective of other page elements and page movement.
    3. You can apply opacity with scroll to images , so that when users scroll the page Opacity will change, thus with scroll the image will get better.
    Thanks,
    Sanjit

  • Problem in Hide/Show in a Table Row

    Hi,
    i have to create 4 pages and each page has a table region with displaying records and a column "LINK" to go to the next page with the parameters from that record. Every link has a batchId and one another Id as parameter to next page. The next page reads the parameters and queries the corresponding table for details of that results table region contained in that page.
    Thus i have 4 pages with 4 table regions and each table region is associated with a view object which is based on an EO connected with a database table. (4 VO's).
    Now in every table i have a detail region (hide/show) which shows error records for a row ....
    thus there are 4 ViewLinks for all 4 VO to a single ERROR VO.
    I have 4 instances of ERRORVO in AM like ERRORVO1, ERRORVO2, ERRORVO3, ERRORVO4.
    Now, the hide/show region is working properly on the first 3 pages with proper navigation to pages.
    Then, i created the 4th page and created the table region in the 4th page.
    From the 3rd page i have passed 2 parameters through the link and also retainAM=Y.
    i have captured both parametres and call a method to populate data in table of 4th page.
    Successfully done..running properly....
    Now i added the detail region which is a table as previous pages in the 4th page with ERRORVO4...
    Then when i run the page i get the 1st page and thrugh link i move to 2nd and to 3rd page. But when i click on the link on 3rd page to move to 4th page i m getting "NullPointerException" with "check Inner table properties"
    Now i removed the detail region (Hide/show) only from the 4th page and again run the page . its working properly for all 4 pages with proper navigation but i am not able to see errors with hide/show on 4th page and it is required.
    i m not getting what could be the reason...
    do i need to remove retainAM=Y from the page navigation links.?????
    and is there anything like we cant create more no. of instances (4) of a single VO in an AM.....????
    Any alternative for showing the errors on 4th page with Hide/Show or without Hide/Show????

    Thiago,
    Thanks for the quick reply.
    I am now getting the following error below:
    Am I suppose to add another field to my VO select?
    oracle.apps.fnd.framework.OAException: Detail View Attribute Name is not set for the table even though a detail named child has been specified. Please specify a Boolean or String ("Y" or "N") view attribute for this table property.
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1146)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1794)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:463)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:384)
         at OA.jspService(OA.jsp:40)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)

  • Where is the option to hide/show side bar??

    since i just did the new update 12.1.0.50 a few moments ago, it resolved the matter of not having the side bar, but now you cannot make it go away.  what are you guys doing?  first you take it away from us, now we cannot get rid of it.  can you please put back the option in the menu to hide/show side bar?  it would be greatly appreciated.

    I'm guessing here, but when you say "you guys", you are referring to Apple? Well, this is a user to user support forum, Apple does not participate here. If you want to provide feedback to Apple, go HERE, and click on the appropriate subject.

  • Using jump menu to load swf to a target...

    is it possible to use the selections of a jump menu, once when one is selected to load a .swf to a certain target on the page.
    i.e. at www.meadowlarkco.com/index2_new8.htm I have a jump menu with selections within it. Is it possible for instance once I select "flatbed services" for it to a load a new .swf movie to a location on the page, much like an empty mc holder would be used. Then when each new selection is made from the jump menu it will load the according .swf to the same location.....how would I start this script to change my current jump menu?
    thanks for any help provided

    For many reasons, a JumpMenu would not be my first choice for this.  You need a stable cross browser media player embedded into the page and a playlist of files to pull this off.
    Have a look at Wimpy Rave with Full Advertising / Playlists (NOTICE: this link contains auto playing sound and video).
    http://www.wimpyplayer.com/examples/rave/ex_ad_playlist.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How do I keep Hide / Show Region open

    Hi,
    I have a page with one region based on a hide/show template. The current behaviour on a page submit is that the region always hides.
    I'd like it so that if the user opens the region that it will remain open after the page refreshes.
    Thanks,
    Brian

    This is a hack so I wouldn't count on it, but it worked for me (in variation, I needed a bit different thing). And, remind you, it only holds one of them open for a page (my logic is, that when they are hidden no more than one should be open at once).
    1) the page should have an item that holds the information - I'll call it OPEN_REGION. I am knowingly ignoring the usual Pn_ naming convention so all pages with Hide / Show regions could have their own OPEN_REGION but the name could still be uniquely referenced in javascript. It should be a hidden variable in the topmost region in the template (which must not be one of those enhanced HIde/Show regions).
    2) make a new javascript function to set the item and submit page. Be careful to make sure you use valid variables or javascript errors display when no OPEN_REGION item is on the page (for example).
    function myHideShow ( region )
    if (document.getElementById('OPEN_REGION'))
    if ( document.getElementById('OPEN_REGION').value != region )
    document.getElementById('OPEN_REGION').value = region;
    }else{
    document.getElementById('OPEN_REGION').value = '';
    doSubmit();
    2) edit the region template. Set it to call your own function.
    Where it sais:
    href="javascript:hideShow('region#REGION_SEQUENCE_ID#','shIMG#REGION_SEQUENCE_ID#','#IMAGE_PREFIX#jtfuhide.gif','#IMAGE_PREFIX#jtfushow.gif');"
    make it (set the page item to the region sequence number):
    href="javascript:myHideShow('#REGION_SEQUENCE_ID#');"
    3) edit your page template, in the footer add the opening of the region. Be careful to make sure you use valid variables or javascript errors display when no OPEN_REGION item is on the page (for example).
    <script>
    if (document.getElementById('OPEN_REGION'))
    if (document.getElementById('OPEN_REGION').value != '')
    theRegion = document.getElementById('OPEN_REGION').value;
    hideShow('region'+theRegion, 'shIMG'+theRegion, '#IMAGE_PREFIX#jtfuhide.gif', '#IMAGE_PREFIX#jtfushow.gif');
    </script>
    That should do it, but be aware, that I am not in Oracle team, just a simple programmer trying to find my own solutions and Javascript has helped me here sometimes.
    For example, try to use #TITLE# substitution string in BODY part of the Page Template...

  • Jump Menu/Database question

    Greetings all. I have a contact management database for
    different departments. As it stand right now, I have a one page on
    my site with a list of each department, and when you click on a
    department it takes you to a webpage that populates with
    information pertaining to the selected department. What I'm trying
    to do is replace the list with a jump menu. I know how to populate
    the jump menu with dynamic data, but how do I pass a URL variable?
    Also, I'm wanting the site to go to the same page regardless of
    which department the select. How do I tell the jump menu to go to
    page x if the labels are pulled dynamically from a table? The best
    example I can think of is a webpage with that caters to different
    countries. REgardless of which country you select it takes you to
    the same page, but the data on the page is pulled from a database
    containing the language that corresponds with the selected country.
    Thank you in advance for the help.

    Moved to the Dreamweaver Application Development forum.
    To display the selected option, you need to add a conditional statement to each <option> tag.
    <option style="background-image:url(img/flags/icon1.gif);"
    value= "main.php?city=tx"
    <?php
    if (isset($_GET['city'] && $_GET['city'] == 'tx') {
      echo 'selected="selected"';
    ?>
    >Texas</option>
    Do the same for each <option>, changing 'tx' to 'ut', 'ny', and 'nj' as appropriate.

Maybe you are looking for

  • Random system hang-ups with Kernel 3.2.1-1 and catalyst 11.12

    Hello, i have a very strange problem for the last month or so (i'm afraid i cannot say, when it exactly happened the first time or if it was after a upgrade): My system just randomly crashes. I haven't yet found out when it exactly crashes and how to

  • SAP ABAP or SAP Functional???

    Hi all, Im in SAP technical consultant since 16 months but i have observed that functional consultants have better prospects in career growth, im interested to switch to functional. Is this a right decision to switch to functional? If yes, which modu

  • What happened to my external LaCie drives?

    I have two LaCie external drives attached to my iMac. Unfortunately, they are both named LaCie (poor planning on my part). I wanted to rename them and didn't know how. When I opened finder I clicked on the arrows to the right of the drive names think

  • Create a custom program for FPS3 transaction code

    Hi, I would like to create a custome program which does the below steps in one shot. 1) RUN(SUBMIT) Transaction FPS3 with Company code = NONE and Created on FROM = SY-DATUM & TO = SY-DATUM 2) In the next screen, it should select SELECT ALL button 3)

  • Unable to download a docx file

    will this PDF sofware download a Docx file?