Director app on Mac: Dock Icon Drop Down List displays with no title

Hi,
we have a Director application on mac, that changes it state from window-mode to full screen-mode. It is done using Resolution xtra
Now we've discovered following peculiarity
When program is in windowmode and user presses CMD-Button + Click Dock Icon, a dropdown list appears over the clicked dock icon. And the problem is, that besides of the name of our programm there is another item in the list, that have no title.
What can be the reason of this? Is there some workarounds for that problem?

Hi,
we have a Director application on mac, that changes it state from window-mode to full screen-mode. It is done using Resolution xtra
Now we've discovered following peculiarity
When program is in windowmode and user presses CMD-Button + Click Dock Icon, a dropdown list appears over the clicked dock icon. And the problem is, that besides of the name of our programm there is another item in the list, that have no title.
What can be the reason of this? Is there some workarounds for that problem?

Similar Messages

  • PO drop down list populates with "Delivery Completed" POs

    All,
    I have seen the following issue: When the supplier creates an ASN manually and is requested to populate the Purchase Order field, the drop down list displays "Open" Purchase Orders as well as "Delivery Completed" ones, which is very confusing.  Do you happen to know how I can ensure that the supplier only has the choice to select from "Open" Purchase Orders when creating a new ASN?
    Thank you for your help!
    Johanna

    If a particular email address will only be associated with a single office, then one thing you can do is set the export value of the items in the combo box to the corresponding email addresses. The email address will be the value of the field when you retrive it with JavaScript.
    To submit to a particular email address, it would be best to use the mailDoc method, which is documented here: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.505.html
    This is best because it allows you to reliably customize all the the email properties like recipients, subject, body, etc.
    The code for getting the value of the comob box would look something like this:
    // Get the email address from the combo box named "combo1"
    var sTo = getField("combo1").value;
    If more than one office will have the same email address associated with it, post again and I can refer you to other posts that discuss this situation. You would have to use a similar approach if you do not want to set the export values of the items to the email addresses for some reason.
    The alternative is to use the submitForm JavaScript method, but specifying the subject and body text is less reliable and more complicated.
    If you need more help, post again.

  • Addining additional page types or styles to the pages icon drop down list

    in the tool bar - pages - i have one page of latintype of text as the only choice. How do I add other types of page layout or templates to this drop down list that only has the one page of weird text on it?
    I am stuck. thanks.

    Hello pbmb,
    Pages is a document-centric editor. That means all you editings and saves will stored in the document. This is why Pages provides templates. It is like heaving a library of documents, sections and objects. So if you need something often, create a template of it and you will have it with two clicks at hand. Yes, it would be nice to have real customer created libraries of paragraph styles and objects or masks, directly at hand by one click like the Pages objects, etc. Maybe this will come in next versions when Pages will grow up more and more.
    I can't imagine why the section templates (Pages names it pages, too) doesn't work for you the way I described in this thread. You wrote above you have saved it as a document. Have you opened exact this document and the saved creations were not there? I only want to solve this problem, so please write to us if a saved document template (menu: "File/Save as Template...") with such created section templates are not working fine.
    I know it can be frustrated not to achieve the goals easily or not in the way we know right. Pages goes an other way and - despite little adversities - I find the workflow and handling very good. I am missing some features to name Pages a pro app, but I have done some pro designs with it. If you are interested in using Pages further more, I will write an in-depth tutorial about the topic "Section Templates".

  • How to get drop down list  display values

    I have binded my drop down list with tabledataprovider. In the value field i have given customer id and in display field i have given customer name.
    I have reatrived cust id but
    how to reatrieve customer name.

    http://forum.sun.com/jive/thread.jspa?forumID=123&threadID=56515
    Also, if your dropdown list is bound to a data provider you can use something like this:
    RowKey rowkey = tripDataProvider.findFirst("PERSON.PERSONID", dropDown1.getSelected());
    String displayValue = (String)tripDataProvider.getValue("PERSON.NAME", rowkey);

  • Can't set InfoPath 2010 Drop Down List field with C#

    Hi Guys,
    Here I go again, last time it was a date field, this time it is a drop down list. The applications does this: When the user comes into the form, they have the option of creating a new form via a hyperlink button on the top of the page, this button creates
    a new IP Page of the same exact type of page that it is coming from. The issue I am having is that one of my fields called ddlStatus isn't coming up correctly in the copied form, not sure why? If anyone can help I would be eternally grateful. Here is a copy
    of my code:
    if (e.InputParameters !=
    null)
                                System.Text.
    StringBuilder status =
    new System.Text.StringBuilder();
    string ddlStatus =
    string.Empty;
    if (e.InputParameters.TryGetValue("ddlStatus",
    out ddlStatus))
                                    status.AppendLine(ddlStatus);
                                    nav.SelectSingleNode(
    "/my:myFields/my:secInfo/my:ddlStatus", NamespaceManager).SetValue(status.ToString());
    Best regards, Mike

    Well, ok, so I set my code as such:
       addStatus()                    
    if (e.InputParameters !=
    null)
                               System.Text.
    StringBuilder status =
    new System.Text.StringBuilder();
    string ddlStatus =
    string.Empty;
    if (e.InputParameters.TryGetValue("ddlStatus",
    out ddlStatus))
    XPathNavigator nav1 = MainDataSource.CreateNavigator().SelectSingleNode("/my:myFields/my:secInfo/my:Group",
    NamespaceManager);
                                    nav1.SelectSingleNode(
    "/my:myFields/my:secInfo/my:Group/my:DisplayName",
    NamespaceManager).SetValue(status.ToString());
                                    nav1.SelectSingleNode(
    "/my:myFields/my:secInfo/my:Group/my:Value",
    this.NamespaceManager).SetValue(status.ToString());
    and I also created a new method called addStatus() which looks like this:
    public
    void addStatus()
    try
    SPSite site =
    new
    SPSite(http://MyTestBox);
    SPWeb web = site.OpenWeb();
    SPList list = web.Lists["Status"];
    SPListItemCollection listitems = list.Items;
    XPathNavigator nav =
    this.CreateNavigator().
                        SelectSingleNode(
    "/my:myFields/my:secInfo/my:Group",
    this.NamespaceManager);//
    Note: "/my:myFields/my:Countries" => Group Countries
    foreach (SPListItem
    li in listitems)
    XPathNavigator newNode =
    null;
                        newNode = nav.Clone();
                        newNode.SelectSingleNode(
    "/my:myFields/my:secInfo/my:Group/my:DisplayName",this.NamespaceManager).SetValue(li["Title"].ToString());
                        newNode.SelectSingleNode(
    "/my:myFields/my:secInfo/my:Group/my:Value",this.NamespaceManager).SetValue(li["Title"].ToString());
                        nav.InsertAfter(newNode);
                        newNode =
    null;
                    nav.DeleteSelf();
                    nav =
    null;
    catch
    but it still isn't working??
    Best regards, Mike

  • Why won't my drop down list display on hover?

    I am currently implementing a drop down navigation list to an existing navigation bar. This uses very basic html with only ul and li elements. Below is a link to the page, as well as a snippet of the HTML code and CSS that supports it.
    http://derektoigo.com/assets/livesites/DJDKMedia/features.html
    The problem that I am having occurs when hovering over the Features link in my navigation bar. I am trying to display the items that are shown below in the format of a vertical list, but the bigger problem is that even though I am hovering over the parent CSS item and it says to display:block, essentially causing it to hover so I can click, I can't do so. I'm trying to find a way to make the menu stay in place once I move my mouse away from the original item. Please note that none of the other pages support this functionality yet and will contain different code.
    For the record, I am using the Suckerfish drop down and I am following this tutorial: http://www.alistapart.com/articles/dropdowns  I stopped just before proceeding with the IE fixes, titled as "Hold on a minute!"
    If anyone can point out what I'm doing wrong, I'd be most appreciative for the fix. Thanks to all for your help.
    HTML Structure
    <div id="headerFullwidth">
        <div id="header" class="container">
            <img src="images/logo.png" alt="DJDK Media" />
            <ul id="navigation">
                <li><a href="index.html">Home</a></li>
                <li><a href="features.html">Features</a>
                     <ul>
                      <li><a href="index.html">Home</a></li>
                      <li><a href="features.html">Features</a></li>
                      <li><a href="services.html">Services</a></li>
                      <li><a href="portfolio.html">Portfolio</a></li>
                      <li><a href="about.html">About</a></li>
                      <li><a href="contact.php">Contact</a></li>
                    </ul>
                </li>
                <li><a href="services.html">Services</a></li>
                <li><a href="portfolio.html">Portfolio</a></li>
                <li><a href="about.html">About</a></li>
                <li class="last"><a href="contact.php">Contact</a></li>
            </ul>
        </div><!--end header-->
    </div><!--end headerFullwidth-->
    CSS
    #header ul {
    float:right;
    margin-top:20px;
    margin-right:-22px;
    background-color:none;
    list-style-type:none;
    #header ul li {
    float:left;
    padding-left:22px;
    padding-right:22px;
    background:url(../images/navigation-divider-background.jpg);
    background-position:right;
    background-repeat:no-repeat;
    line-height:30px;
    li ul {
    display: none;
    position: absolute;
    top: 1em;
    left: 0;
    li > ul {
    top: auto;
    left: auto;
    li:hover ul {
    display: block;
    li:hover ul li {
    background:none;
    display:block;
    margin:0px;
    padding:0px;    
    #header ul li:hover {
    float:left;
    padding-left:22px;
    padding-right:22px;
    background:url(../images/navigation-divider-background.jpg);
    background-color:#323232;
    background-position:right;
    background-repeat:no-repeat;
    line-height:30px;
    #header ul li a {
    color:#fff;
    font-size:14px;
    #header ul li a:hover {
    color:#6d6d6d;    

    Try pasting this into a new, blank HTML document
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>CSS Horizontal Drop-Menu</title>
    <style type="text/css">
    /**GENERAL**/
    body{
    font:1em/100% Verdana, Arial, Helvetica, sans-serif;
    background:#666;
    margin:0px;
    padding:0px;
    text-align:center;
    /**IE ONLY**/
    *body {font-size:76%}
    #container{
    width:970px;
    margin: 0 auto; /**centered**/
    padding: 12px;
    border: 4px solid silver;
    background: #FFF;
    #header {
    width: 960px;
    margin: 0 auto;
    border: 1px solid green;
    /* Horizontal Drop-Menu */
    ul #navbar {
    width: 100%;
    margin: 0 auto; /**centered**/
    text-align:center; /**centers older browsers**/
    padding: 0;
    font-size: 14px;
    height: 1em;
    #navbar li {
    list-style: none;
    float:left;
    /**top level menu**/
    #navbar li a {
    display: block;
    text-decoration: none;
    color: #444;
    width: 8em;
    padding: 10px;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    border-right: 1px solid #aaa;
    background-color: #DDD;
    #navbar li a:hover {
    background: #666;
    color: #FFF;
    /**sub-menu**/
    #navbar li ul {
    display: none;
    width: 8em; /* Width to help Opera out */
    background-color: #999;}
    /**help for IE6 JavaScript**/
    #navbar li:hover ul,
    #navbar li.hover ul {
    display: block;
    position: absolute;
    margin: 0;
    padding: 0;
    #navbar li:hover li,
    #navbar li.hover li {
    float: none;}
    #navbar li:hover li a,
    #navbar li.hover li a {
    background-color: #999;
    border-bottom: 1px solid #FFF;
    color: #FFF;}
    #navbar li li a:hover {background-color: #666;}
    /**end Drop-menus**/
    /**clear menu floats after ul**/
    .clearing {clear:both; height: 1px; visibility: hidden;}
    </style>
    <script type="text/javascript">
    //Script to make drop-menus work in IE6/
    //<!--[CDATA[
    sfHover = function() {
    var sfEls = document.getElementById("navbar").getElementsByTagName("li");
    for (var i=0; i<sfEls.length; i++) {
    sfEls[i].onmouseover=function() {
    this.className+=" hover";
    sfEls[i].onmouseout=function() {
    this.className=this.className.replace(new RegExp(" hover\\b"), "");
    if (window.attachEvent) window.attachEvent("onload", sfHover);
    //]]-->
    </script>
    </head>
    <body>
    <div id="container">
    <div id="header">
    <h3>CSS Horizontal Drop-Menu</h3>
    <!--Begin Horizontal navbar-->
    <ul id="navbar">
    <li><a href="#">Item One</a></li>
    <li><a href="#">Item Two</a></li>
    <li><a href="#">Item Three &gt; </a><ul><li>
    <a href="#">Subitem 1</a></li><li>
    <a href="#">Subitem 2</a></li><li>
    <a href="#">Subitem 3</a></li></ul>
    </li>
    <li><a href="#">Item Four</a></li>
    <li><a href="#">Item Five &gt; </a><ul><li>
    <a href="#">Subitem 1</a></li><li>
    <a href="#">Subitem 2</a></li></ul>
    </li>
    <li><a href="#">Item Six &gt; </a><ul><li>
    <a href="#">Subitem 1</a></li><li>
    <a href="#">Subitem 2</a></li></ul>
    </li>
    </ul> 
    <!--end navbar -->
    <!--IMPORTANT! clear floats with a p, br, or hr class -->
    <hr class="clearing" />
    </div> <!--end header -->
    </div>  <!--end container -->
    </body>
    </html>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Drop down list populated with parent entity

    Hi,
    I am new with all these ADF in jdev. Let's say I have this model parent -> child. I created toplink mapping, ejb facade and adf data control.
    If I want to create a form for child with one drop down box will be parentId. How do I do that?
    Thank you

    Hi,
    if you use ADF, then you create a data control from the EJB session facade. This exposes the method to query all parents as well as the details. You drag and drop the result set of the details as a form. Then you remove the attribute for which you want to create a drp down list. Expand the detail result node and drag the attribute to the form. In teh opened context menu choose selectOne. In teh opened binding dialog, create a new list binding and choose the result set of the parent. Map the paren't PK to teh detail FK attribute and choose one or more display attributes
    otn.oracle.com/products/jdev has tutorials on this as well
    Frank

  • Drop-down List not function in preview mode.

    Hi all,
    LiveCycle 8.2.1.4029
    I have created a drop-down list and populated it with a text
    However when I preview the form, the drop-down is displayed without the dropdown arrow and the options (text) are not displayed.
    The drop-down list is the only object on the form.
    If I load a form or xpd of a form created prior today the drop-down list displays and functions as normal.
    Any ideas.
    Thanks
    WowRonin

    Hi,
    I uninstalled and reinstalled Acrobat and then patched to 9.4 and everything is back to normal.
    Go figure!!
    Thanks for responding.
    WowRonin

  • Detail region does not refresh when selecting from a drop-down list in master region

    I am using DW CS3 and have updated to version 1.6.1 of Spry.  Using an XML dataset, I am able to create a Spry table as the master region that links to a detail region that displays a small JPG graphic.  It works fine in this format (clicking on a row displays the correct graphic).  However, my table has 80 rows and requires the user to do too much scrolling. So I changed the master region to a drop-down repeat list, but the graphic does not change when a new selection is made in the drop down list.  Listed below is the code produced when I used the insert Spry Repeat List.  I got the same results when adding a spry:setrow="dsChartNurse".  I also tried -- onclick="dsChartNurse.setCurrentRow('{ds_RowID}');" -- which again made no difference.
    When I removed children from the spry:repeat, the master region displayed as a two column list of all 80 items in a drop-down list format.
    <div spry:region="dsChartNurse">
           <select name="select" spry:repeatchildren="dsChartNurse">
             <option value="{name}">{name}</option>
           </select>
    </div>
    <div id="image" spry:detailregion="dsChartNurse">
       <img src="{dataimage}" align="center" style="margin:50px 0 0 0"width="320" height="164" />
    </div>
    Thanks so much to anyone who can help correct my code in order to have a drop-down list display information correctly in the detail region.

    Thanks for the quick reply.  I did solve the problem I was having by changing from onclick to onchange in the master region.  But, now I have another problem with, of course, IE.  I just put in online at http://www.minursemap.org/ageDistNurse.html.  When opened in IE, the drop down list displays the last entry, but the image is for the first in the list.  Thanks again for your help.

  • Spry region drop-down list problems in IE

    Can someone please help me determine the reason that IE does not display the correct item in a spry region drop-down list when first opening the site.  You can see the problem at http://www.minursemap.org/agedistnurse.html.  The initial item in the drop-down list should be Alcona with the corresponding graphic displayed in the detail region.  In Firefox, this works correctly.  When first opening the page in IE, the graphic is Alcona, but the drop-down list displays Wexford (the last item in the list).  From then on, all of the links work correctly.
    The code for the two regions is below.  Thanks in advance for assisting someone new to spry.
    <div id="ctyname">
         <div spry:region="dsChartNurse">
           <select name="name" spry:repeatchildren="dsChartNurse" onchange="dsChartNurse.setCurrentRow(this.value)">
             <option value="{ds_RowID}">{name}</option>
           </select>
      </div> <!--spry:region close -->
    </div><!--ctyname close -->
    <div id="image">
       <div spry:detailregion="dsChartNurse">
            <div align="center" style="padding-bottom:15px"><img src="{dataimage}" width="405" height="202" />
            </div><!--un-named div close -->
       </div><!-- spry:detailregion close -->
    </div><!--image close -->

    Try the following code to replace yours:
           <select name="name" spry:repeatchildren="dsChartNurse" onchange="dsChartNurse.setCurrentRow(this.value)">
             <option spry:if="{dsChartNurse::ds_RowID}=={dsChartNurse::ds_CurrentRowID}" spry:selected="selected" value="{ds_RowID}">{name}</option>
             <option spry:if="{dsChartNurse::ds_RowID}!={dsChartNurse::ds_CurrentRowID}" value="{ds_RowID}">{name}</option>
           </select>
    I hope this helps.
    Ben

  • Type ahead in drop down lists

    Hi, I would like to be able to type ahead in drop down lists. E.g. with an alphabetical drop down list having
    Scott
    Sean
    Soo
    Steven
    I would like to be able to position within that drop down list by typing e.g. st and land upon steven, however when I key in st, I find myself at the top of the entries in the drop down list starting with t.
    Any ideas? Something I overlooked?
    Best regards, Jesper

    Jesper,
    I admit that I don't fully understand how it all works, but I'll explain the general steps I took to get it working. Hopefully some of the smart people here can show us a better way to do it.
    I don't think that I should post the actual javascript file because the first line of it says:
    "// Copyright 2004 and onwards Google Inc."
    But, you can get the original version of it here: http://www.google.com/ac.js
    If you save it and a copy of the page that calls it on your local web server, you can play around with it.
    It looks like a real mess. This guy has dissected it: http://serversideguy.blogspot.com/2004/12/google-suggest-dissected.html
    From all that, you can see that the end result is that the script calls a URL like this, with your query at the end:
    http://www.google.com/complete/search?hl=en&js=true&qu=transparent%20aluminu
    Which returns a result like this:
    sendRPCDone(frameElement, "transparent aluminu", new Array("transparent aluminum", "transparent aluminum 3m"), new Array("426,000 results", "31,900 results"), new Array(""));
    The script can be edited to call any URL. I changed it to call a stored procedure on my HTML DB web server. The changes were:
    Line 3: Change pn="search" to pn="schema.package.procedureName"
    Line 14: Change else E="/complete/" to E="/pls/htmldb/" (The Location entry set in your Marvel.conf)
    You then need to create a stored procedure that will be called from Line 3.
    It needs to have 3 varchar2 parameters called qu, hl, and js. The first one is the query string. I didn't use the other two.
    It needs to return a message like the script is expecting - with the results concatenated in comma-separated arrays. Here is a simple example:
    create procedure INCSEARCH(qu varchar2, hl varchar2, js varchar2) as
    l_List1 varchar2(4000);
    l_Query varchar2(255);
    l_separator varchar2(10) default '';
    begin
    l_Query := qu || '%';
    for x in (select Last_Name from hr.Employees where Upper(Last_Name) like Upper(l_Query) order by 1)
    loop
    l_list1 := l_List1 || l_separator || '"' || x.Last_Name || '"';
    l_separator := ',';
    end loop;
    owa_util.mime_header('text/html', false);
    owa_util.http_header_close;
    htp.p('sendRPCDone(frameElement, "'|| qu ||'", new Array(' || l_List1 || '), new Array(' || l_List1 || '), new Array(""));');
    end;
    Grant Execute on INCSEARCH to Public;
    The last step is to hook it into HTML DB. Examining the Google page shows that they run a script called InstallDC to hook the script to a form field.
    In the Footer section of the Page Attributes of my page, I added this:
    <SCRIPT src="/ac.js"></SCRIPT>
    <SCRIPT>InstallAC(document.wwv_flow,document.wwv_flow.p_t03,document.wwv_flow.p_t03,"dc_htmldb.incsearch","en");</SCRIPT>
    Where p_t03 is the name of the text field I want it attached to, and "dc_htmldb.incs.incsearch" is my stored procedure.
    Those are the basic steps. Does anyone have a cleaner approach?

  • Drop-down list is crashing my interactive PDF document

    Hello, I'm using LiveCycle Designer 7.0 on Windows XP.
    I'm attempting to create some simple editable PDF documents for use by my security staff.
    I've created the forms and most fields work correctly, except for a simple drop-down list field with about 15 choices. When the pdf is called up from Windows and the user reaches that field (either by tabbing to it or clicking on it), the entire pdf crashes; the user is booted out and the pdf closes. The "debug" option doesn't seem to fix anything.
    When I test-run the pdf in Designer, the field seems to work OK. The problem is happening when we open the pdf from Windows.
    I've deleted and rebuilt this field twice, with the same result.
    I'm an Adobe noob and am nowhere near sophisticated enough to employ JavaScript or other behind the scenes programming; I'm just using the basic features of Designer.
    Please help, I'm stuck and don't know how to troubleshoot this problem.
    Thanks in advance to anyone who may be able to point me in the right direction. Remember, I'm a noob, so single syllable words are probably best.
    RJinNorCal | 11/7/2011

    Hello Srini,
    Thanks very much for your gracious offer. I did a bit more research
    yesterday after posting my issue on the forum, and based on a similar
    thread, I saved my document as a static PDF instead of a dynamic PDF.
    That seems to have done the trick; all fields now work correctly without
    crashing.
    I will still be happy to share the document with you, but my current IE8
    browser is having problems with accessing the specific website; it keeps
    crashing/recovering the tab. My IT department knows about this issue and
    is working to address it. At any rate, since my problem seems to be
    fixed, I'm sure you have other pressing matters to attend to, but thanks
    again for providing support! I will be sure to come back to the forums
    if I encounter any other problems I cannot resolve.
    Regards,
    R.J. Richards
    Administrative Services Officer II
    County of Sacramento, Department of Health & Human Services
    Departmental Administration, Management Services
    E: [email protected]   D: 916-875-1232  C: 916-416-8550  F:
    916-875-2029
    Intranet: http://dhhsweb/default.aspx?WOID=FAC
    Internet: http://www.sacdhhs.com

  • Adobe LiveCycle Designer 8.1 Drop-Down List Problem

    I have an array of data.  I'm populating one drop-down list (Genus) with data and then trying to populate a second drop-down list (Species) based on the selection from the first drop-down list (Genus).<br /><br /><?xml version="1.0" encoding="UTF-8"?><br /><?xfa generator="AdobeLiveCycleDesigner_V8.0" APIVersion="2.5.6290.0"?><br /><xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/" timeStamp="2007-08-20T19:50:53Z" uuid="6f886dfc-03cb-474d-84ad-70c94bed1788"><br /><template xmlns="http://www.xfa.org/schema/xfa-template/2.5/"><br />   <subform allowMacro="1" layout="tb" locale="en_US" name="form1"><br />      <pageSet><br />         <pageArea id="Page1" name="Page1"><br />            <contentArea h="756pt" w="576pt" x="0.25in" y="0.25in"/><br />            <medium long="792pt" short="612pt" stock="default"/><br />            <?templateDesigner expand 1?></pageArea><br />         <?templateDesigner expand 1?></pageSet><br />      <subform h="756pt" w="576pt"><br />         <field h="8.6202mm" name="PrintButton1" relevant="-print" w="41.8956mm" x="158.7501mm" y="34.7904mm"><br />            <?templateDesigner isPrintObject true?><br />            <ui><br />               <button/><br />            </ui><br />            <font typeface="Myriad Pro"/><br />            <caption><br />               <value><br />                  <text>Print Form</text><br />               </value><br />               <para hAlign="center" vAlign="middle"/><br />               <font typeface="Myriad Pro"/><br />            </caption><br />            <border hand="right"><br />               <?templateDesigner StyleID apbx2?><br />               <edge stroke="raised"/><br />               <fill><br />                  <color value="212,208,200"/><br />               </fill><br />            </border><br />            <bind match="none"/><br />            <event activity="click"><br />               <script contentType="application/x-javascript">xfa.host.print(1, "0", (xfa.host.numPages -1).toString(), 0, 1, 0, 0, 0);</script><br />            </event><br />         </field><br />         <draw h="8.6202mm" name="StaticText1" w="128.9085mm" x="3.4391mm" y="0.3098mm"><br />            <ui><br />               <textEdit><br />               </textEdit><br />            </ui><br />            <value><br />               <text>CRP Request/Report Form for qPCR Analysis:</text><br />            </value><br />            <font size="14pt" typeface="Myriad Pro" weight="bold"/><br />            <margin bottomInset="0.5mm" leftInset="0.5mm" rightInset="0.5mm" topInset="0.5mm"/><br />            <traversal><br />               <traverse ref="DateTimeField1[0]"/><br />            </traversal><br />            <?renderCache.bounds 362576 21601 0 0 1417 1417 0 0?><br />            <?renderCache.textRun 42 CRP Request/Report Form for qPCR Analysis: 0 1417 11917 0 0 0 "Myriad Pro" 1 0 14000 ISO-8859-1?></draw><br />         <field h="7.7252mm" name="Req" w="77.6041mm" x="3.4391mm" y="8.9305mm"><br />            <ui><br />               <textEdit><br />                  <border><br />                     <?templateDesigner StyleID aped2?><br />                  </border><br />                  <margin/><br />               </textEdit><br />            </ui><br />            <font typeface="Myriad Pro"/><br />            <margin bottomInset="1mm" leftInset="1mm" rightInset="1mm" topInset="1mm"/><br />            <para vAlign="middle"/><br />            <caption reserve="26.19mm"><br />               <font baselineShift="0pt" typeface="Myriad Pro"/><br />               <para marginLeft="0pt" marginRight="0pt" spaceAbove="0pt" spaceBelow="0pt" textIndent="0pt" vAlign="middle"/><br />               <value><br />                  <text>Requestor</text><br />               </value><br />            </caption><br />            <border><br />               <edge presence="hidden"/><br />               <corner presence="hidden" thickness="0.1778mm"/><br />            </border><br />            <traversal><br />               <traverse ref="Lot[0]"/><br />            </traversal><br />         </field><br />         <draw h="8.1758mm" name="StaticText2" w="18.6252mm" x="3.4391mm" y="17.5504mm"><br />            <ui><br />               <textEdit><br />               </textEdit><br />            </ui><br />            <va

    var constColNum = 10;
    var InfoDB = new Array
    new Array( "Bacillus","Brucella","Burkholderia","Coxiella","Clostridium", "Erwinia","Francisella","Yersinia","Rickettsia","Other"),
    new Array( "anthracis","cereus","thuringensis","subtilis","globigii","lichenformis","other"),
    new Array( "melitensis","suis","ovis","canis","abortus","neotomae"),
    new Array( "mallei","pseudomallei"),
    new Array( "burnetti","other"),
    new Array( "botulinum"),
    new Array( "herbicola"),
    new Array( "tularensis","holartica"),
    new Array( "pestis","pseudo TB","other"),
    new Array( "prowazekii"),
    new Array( "other"),
    new Array( "DHP61.183","cereus grp","sodA","tarA","omp25","IS407A","IS1111A","Cbot","aroQ","tul4"),
    new Array( "3A","Rprow4","capB,pagA,tarA","cereus grp, tarA","cereus grp, tarA, F1cap, pesticin, YopD","designed assay"),
    new Array( "0.1754","0.1718","0.1742","0.2164","0.2170","0.2778","0.1565","0.1255","0.4762","0.4808" ),
    new Array( "0.4831","0.8197","0.1976","0.1923","you figure it out")
    function LoadDropMenu(obj, rowNum)
    for(i = 0; i < constColNum; i++)
    obj.addItem(InfoDB [rowNum][i], i + "");
    function LoadDropMenu2(objDropDown, nIndex)
    var arrayInfoDB = InfoDB[nIndex];
    objDropDown.rawValue = "";
    objDropDown.clearItems();
    for (var i = 0; i < constColNum; i++)
    objDropDown.addItem(arrayInfoDB[i], i + "");
    //objDropDown.addItem(arrayInfoDB[i]);

  • Rollover Drop Down List

    Hello,
    How would I go about creating a drop down list calendar with
    links in Dreamweaver CS4 which would roll itself over. I am trying
    to create a site for a cinema and am wanting something similar to
    what is at
    http://moviefone.com. I have
    looked in their code and find no reference to how they are doing
    it?
    Thanks,
    Greg

    I got it! Thank you so much.I've try
    rollout="dl.closedropdown()"
    but It happen to close too quick
    when I rollover and it open and I rollover on the sub-item(in the open list)
    It just not still open
    (It will open when I rollover on the list button but when I move down to the drop down list it close)

  • Drop Down Lists and Value Change Events

    I have 4 drop down lists each with a set of values from the database.
    Based on the value of the first list(ValueChangeEvent only for list1) , I fetch data from the database and set the 'selected value' in the other lists.
    I have a Submit button which takes values from these 4 lists and puts it in the database.
    Problem:
    I change list 2 through list 4 and hit a Submit button which inserts all the values in the database.
    However,on Clicking the Submit button I never get the new selected values, it always refers to the previously fetched values.
    I tried to recreate this case in a Sandbox without a database , Here is the code:
    Page1.jsp
    <h:selectOneMenu id="list1" value="#{SessionBean1.selectedList1}" valueChangeListener="#{SessionBean1.list1ValueChangeListener}"  onchange="this.form.submit();" >
                   <f:selectItems id="dropdown1SelectItems" value="#{SessionBean1.list1}"/>
    </h:selectOneMenu>
      <h:selectOneMenu id="list2" value="#{SessionBean1.selectedList2}" >                           
                  <f:selectItems id="dropdown2SelectItems" value="#{SessionBean1.list2}"/>
       </h:selectOneMenu>
       <h:commandButton id="add" actionListener="#{SessionBean1.addActionListener}" value="Add"/>
        <h:inputText id="result" value="#{SessionBean1.result}" />SessionBean1
       public SessionBean1() {
            list1.add(new SelectItem("0","0"));
            list1.add(new SelectItem("1","1"));
            list1.add(new SelectItem("2","2"));
            list1.add(new SelectItem("3","3"));
            list2.add(new SelectItem("a","a"));
            list2.add(new SelectItem("b","b"));
            list2.add(new SelectItem("c","c"));
            list2.add(new SelectItem("d","d"));
            map.put("0", "a");
            map.put("1", "b");
            map.put("2", "c");
            map.put("3", "d");
        private void fetch_data(String value){
             selectedList2=map.get(value);
        public void list1ValueChangeListener(ValueChangeEvent vce){
                fetch_data(vce.getNewValue().toString());
        public void addActionListener(ActionEvent event){
            result=selectedList2;
        }I tried debugging and found that after the Value Change Event is fired only selectedList1 gets a new value during Update Model Values Phase and selectedList2 still has the old value.
    With this sand box project I cannot even get the second list to show the corresponding value.
    Any insight on this would be helpful

    Thank You Balus C,
    I just realized the reason why this is not working, I found the reason in your article Populating Child Menu's article, I am just
    putting it as a reference here.
    One concern is that the skipping of the UPDATE_MODEL_VALUES will also cause that the new values of the menu's which have immediate="true" set won't be set in the backing bean. This can partly be fixed by getting the new value from the ValueChangeEvent inside the valueChangeListener method and assign it to the appropriate property. But this won't work for other menu's of which the valueChangeListener isn't been invoked. This would cause problems if you select a child menu value and then select the parent menu back to null and then reselect it to same value again, the child menu which will show up again would remain the same selection instead of null while its child will not be rendered! To solve this we need to bind the menu's to the backing bean so that we can use UIInput#setValue() and UIInput#getValue() to set and get the actual values.+ The JSF lifecycle will set and get them in the RESTORE_VIEW and RENDER_RESPONSE phases respectively.+
    I am not sure I understand whether or not it is a limitation but the reason above is valid and I rolled back to binding my menus and getting to work with that.
    Is Binding UI components a wise idea because most of the attributes can be programmed using properties in Backing Beans unless you have to build new components?
    Thanks Again

Maybe you are looking for

  • When atemping to use wifi hotspots FireFox does not redirect to login page.

    when trying to use a hot spot like in a hotel or airport (tmoble for one) will not redirect to login page. Nor can it find the page when I enter the DNS name. If I enter the IP address of the long in page then it can find it but not the subsequent pa

  • HTML code in iWeb

    Can someone please help. So I can add Meta names, contents etc in my web page, I have opened the HTML file of the particular page in dreamweaver. I have added keywords and description in the code. I then save the file back to my iweb site folder, lau

  • JTree in JScrollPane doesn't scroll

    I have a JTree in a JScrollPane that doesn't scroll. Background: it used to! History: I moved the creation of the JTree to inside an Object that returns it with a ".getTree()" method. Since then, it hasn't been scrolling. I even set the JScrollPane t

  • Error in Add Data File by using Extend Table Space

    Hi All, I am trying to extend tablespace by adding a datafile. I am using BRTOOLS. But it is giving the following error:- BR0301E SQL error -1580 at location BrCtlCopy-1 ORA-01580: error creating control backup file /oracle/<SID>/sapreorg/sdzautpx/cn

  • MacBookPro: HD formatted with same type computer - impossible to put OSX 10.5 on it. Any help???

    Hi there, I'm fully new with Mac. I'm aware of PC but Mac is of course a different story. Mac 1 is the bad one. Mac 2 is fully functioning. I did twice the hardware tests on Mac 1: both tests didn't mention any problem. I formatted the HD from Mac 1