Product Variation Select Box Issue

HI all! I'm having an issue with the production variations that I have out of stock and they're still showing in the select dropdown menu. I have tried to get support on this but they're telling me that it's something to do with my template. I haven't been able to find any issue with my template though. Upon inspection of the code, I can see that the select box is being set to "display: none" When I disable this, a second select box appears next to the first select box with the correct inventory available selections. Can anyone help me figure out this issue? Thanks in advance!
{tag_attributes} has been changed to {tag_attributes, vertical, true, false} and all out of stock variations have been disabled.
UPDATE: On CSS style: select, .selectBox - line 504 "style.css" I forced display: inline-block and now you can see the two select boxes upon page load.
UPDATE: For the incorrect select box that showed all the product variations despite their disabled status -  i was able to force it to display: none !important --- and it solved this issue. I would still like to know why this was happening if anyone has ideas.
Thanks!

Hi mattkrae34,
What version of SpryMenubar.js are you using? You can find
the version on the first line of the file.
Also, do you have a sample URL we can take a look at?
--== Kin ==--

Similar Messages

  • Selection Box Issues

    Hi folks, this is probably a dumb question but I've looked everywhere online without an answer:
    How can I draw a selection box over 1 or more objects without selecting objects that touch the selection box? - I.e. as an example: in Autocad when you draw a selection box from left to right it only selects what's inside the box, and when you draw it from right to left it selects everything that crosses in and through the selection box... In illustrator I'd like to be able to select only what's inside the box and not what crosses it?
    Apologies if i've confused the issue, I'm a little tired! :-)

    It's not a dumb question, Illustrator just doesn't work that way. You may want to request the feature here.
    "Normal, direct or group" selection tools along with "Shift-clicking" to toggle selections, is the standard approach.
    Also, the Selection Marque tool may help you.
    Finally, effective use of groups, layers and symbols, can greatly simplify selection challenges.

  • Selection boxes in Barracuda Anti Spam and Virus Firewall do not appear in 7.0. They appeared in previous versions, and in IE.

    Selection boxes in Barracuda Anti Spam and Virus Firewall do not appear in 7.0. They appeared in previous versions, and in IE.

    FIXED!
    I reverted back to 3.6.23 and all works fine. From everything I can tell; number of problems submitted, breadth of issues, no access to versions 4, 5, 6 (rapid version turnover with no support), and now beta being released for 8, it seems FF is having the user base do all it's alpha/beta testing without consent. Being in product marketing myself, I probably would have lost a significant percentage of my customer base by now. When FF begins to support a new mainstream release, then I'll be interested again.

  • 'BOXI3.1 SP3' select box limitations

    Hi All,
    This is regarding character limitation in Universe Designer BOXI 3.1 SP3 for an object in the select box.
    Environment:
         BOXI3.1 SP3
    Issue:
         We are hardcoding the list of values in @prompt function. If I check the number of characters in the select box, we are using around 2,58,552 characters. While in Business Objects, the number of characters accepted in the select box of the object are around 28000 (without space).
    Require help on:
         . Are there any limitations with the number of characters that can be used in the select box of the object in Universe Designer?
         . Is there any way we could modify the limitation?
    Thank you in advance!
    PS:
         We cannot hardcode the list of values at the database level. In this case we will have to include the table at the universe level and incase this is combined with any other query it will result into cartesian product as there is no link with the values with any other object.

    Hi Dave,
    You got that right.
    I am trying to use a table specifically for generating list of values.
    This will work fine, but...
    I have created a object '<test>' and trying to use the following syntax in it:
    Case
    when @Prompt('1.Enter value','A','<Class\object name>',mono,free) ='List of value'
    THEN
    Case WHEN @Prompt('2.Level','N',{'1','2','3','4'},mono,free)='1'  THEN @Select(Class2\object2)
              WHEN @Prompt('2.Level','N',{'1','2','3','4'},mono,free)='2'  THEN @Select(Class2\object3)
              WHEN @Prompt('2.Level','N',{'1','2','3','4'},mono,free)='3' THEN @Select(Class2\object4)
              WHEN @Prompt('2.Level','N',{'1','2','3','4'},mono,free)='4' THEN @Select(Class2\object5)
    END )
    when @Prompt('1.Enter value','A','<Class\object name>',mono,free) ='List of value2'
    THEN
    Case WHEN @Prompt('2.Enter value2','N',{'1','2','3','4'},mono,free)='1'  THEN @Select(Class3\object2)
              WHEN @Prompt('2.Level','N',{'1','2','3','4'},mono,free)='2'  THEN @Select(Class3\object3)
              WHEN @Prompt('2.Level','N',{'1','2','3','4'},mono,free)='3' THEN @Select(Class3\object4)
              WHEN @Prompt('2.Level','N',{'1','2','3','4'},mono,free)='4' THEN @Select(Class3\object5)
    END)
    END
    This continues for another 50 times for other 50 list of values which select other 50 classes.
    Now, in this creates it creates a cartesian product when we try to display the list of value for this object '<test>'.
    This list of values table cannot be linked to any other table.
    Hope this clarifies...

  • Multi-Select Box Not Displaying Values Passed From Grid?

    Coldfusion 8
    I inherited an application and am trying to maintain and improve it... hit a snag today.
    I have a multi-select box that is not displaying what I expect.  The values come from a ColdFusion grid which is based off a database query.
    Here is the code for the select - does not work - nothing is selected:
    <cfselect name="USER_IDS" multiple="true" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    Now if I change the multiselect to a single select like below - it takes the first item in the field list (from the grid) and selects it in the drop down.
    <cfselect name="USER_IDS" multiple="false" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    Or if I assign a variable like this and use the multi-select code it seems to work as well.
    testlist = "22,26";
    <cfselect name="USER_IDS" multiple="true" queryposition="below" selected="#testlist#" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    I have displayed the value of "User_IDs" in the grid and in the data entry part of the screen to see values of:  22,26
    to make sure that wasn't my issue.
    Do grids and multiselects require something additional?  Any advice on how to resolve?

    Problem was related to some javascript for the select box.  There was a function for a single select box but not a multiple select box - this fixed it: 
    if(theForm.elements[i].type == "select-multiple"){
                        var selectBox = theForm.elements[i];
                        var sbname = selectBox.name;
                        cpvalue = String(eval('record.data.' + sbname));
                        var NotifyArray = cpvalue.split(',');
                        for (var j=0; j < selectBox.length; j++) {
                            selectBox[j].selected = false;
                        for (var j=0; j < selectBox.length; j++) {
                            sbvalue = selectBox[j].value;
                            for (var k=0; k < NotifyArray.length; k++){
                                if (sbvalue == NotifyArray[k]){
                                    selectBox[j].selected = true;

  • Expanding box issue I.E. 6

    Hi, Can anyone tell me how to fix expanding box issues in I.E. 6. When viewed in I.E. 6 The text in my main content area expands causing the box to expand and jump down to the bottom of the page. Does anyone have a hack for this? Thanks
    My link is http://www.innervisionfilms.tv
    My CSS code for the page is
    <!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=UTF-8" />
    <title>Welcome to Innervision Films Royalty Free Stock Footage, post production, motion graphics and photography gallery</title>
    <style type="text/css">
    <!--
    a:hover {
        color: #FFFFFF;
        text-decoration: underline;
    body  {
        background: #666666;
        margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
        padding: 0;
        text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
        color: #000000;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 100%;
    .twoColFixRtHdr #container {
        width: 780px;
        margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
        border: 1px solid #66CCFF;
        text-align: left; /* this overrides the text-align: center on the body element. */
        background-color: #000000;
    .twoColFixRtHdr #header {
        padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
        background-color: #000000;
        font-size: 1px;
    .twoColFixRtHdr #header h1 {
        margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
        padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    .twoColFixRtHdr #sidebar1 {
        float: right; /* since this element is floated, a width must be given */
        width: 250px;
        background-color: #000000;
        font-family: Verdana;
        font-size: 1px;
        color: #66CCFF;
        background-image: none;
        padding-top: 0px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
        border-top-width: 1px;
        border-right-width: 0px;
        border-bottom-width: 1px;
        border-left-width: 1px;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        border-top-color: #66CCFF;
        border-right-color: #66CCFF;
        border-bottom-color: #66CCFF;
        border-left-color: #66CCFF;
    .twoColFixRtHdr #mainContent {
        background-color: #000000;
        font-family: Verdana;
        font-size: 11px;
        color: #66CCFF;
        margin-top: 0;
        margin-right: 250px;
        margin-bottom: 0;
        margin-left: 0;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 20px;
        padding-left: 15px;
    .twoColFixRtHdr #footer {
        padding-top: 0;
        padding-right: 0px;
        padding-bottom: 0;
        padding-left: 0px;
        background-color: #000000;
    .twoColFixRtHdr #footer p {
        margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
        padding: 0px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    -->
    </style>
    <!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .twoColFixRtHdr #sidebar1 { width: 220px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { padding-top: 0px; }
    .twoColFixRtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->

    Johns right, I would not worry too much about IE6 but if it is a necessity a couple of minor css amends will get it working in that browser.
    Add to your .twoColFixRtHdr #mainContent css
    float: right;
    width: 494;
    And then comment out /* */ the below also in the .twoColFixRtHdr #mainContent css
    /* margin-right: 250px; */

  • 3 cfgrids on one page.  Columns from grid 1,2 and 3 are swapping the first select box from each grid.

    ColdFusion 11, hot fix 3 installed but did not help. There are no binds.
    This one has been driving me crazy and I have finally figured out that it is the first column in each grid where there is a select box via "valuesdisplay" that is the issue. Select box results are switching grids!
    Example of how it is coded to display:
    Grid 1 - gridcolumn should have a dropdown with 1,2,3
    Grid 2 - gridcolumn should have a dropdown with a,b,c
    Grid 3 - gridcolumn should have a dropdown with x,y,z
    However, the results in the dropdowns in the grids are:
    Grid 1 - x,y,z (should be 1,2,3)
    Grid 2 - 1,2,3 (should be a,b,c)
    Grid 3 - a,b,c (should be x,y,z)
    This only happens with the first dropdown for each grid. Any other columns with dropdowns do not have any issues and do not swap out to the wrong grid.
    Sample of my code from the grids:
    Grid 1:
    <cfgrid name = "evalgrid"
      height="200"
      autowidth="no"
      font="arial" fontsize="12"
      query = "getevalfinal"
      SORT="Yes"
      selectmode="edit"
      format="html"
      insert="yes"
      delete = "#deletevalue#">
      <CFGRIDCOLUMN NAME="numberofschools" HEADER="numberofschools"
      HEADERALIGN="LEFT" DATAALIGN="LEFT"
      BOLD="Yes" ITALIC="No"
      SELECT="Yes" DISPLAY="Yes"
      HEADERBOLD="Yes" HEADERITALIC="No"
      VALUES = " ,NA,1,2,D"
      VALUESdisplay = "Blank,NA,1,2,D" valuesDelimiter=","
      width=50>
    </cfgrid>
    Second Grid:'
    <cfgrid name = "SecondGrid"
      height="100" width="700"
      font="arial" fontsize="12"
      query = "getsecurity"
      SORT="Yes"
      selectmode="edit"
      format="html"
      insert="yes"
      delete = "#deletevalue#"
      autowidth="yes"
      >
      <CFGRIDCOLUMN NAME="userrole" HEADER="userrole"
      HEADERALIGN="LEFT" DATAALIGN="LEFT"
      BOLD="Yes" ITALIC="No"
      SELECT="Yes" DISPLAY="Yes"
      HEADERBOLD="YES" HEADERITALIC="No"
      VALUES = "#olduserrole#"
      VALUESdisplay = "#olduserrole#" valuesDelimiter=","
      WIDTH=300
      font="arial" fontsize="12">
    </cfgrid>
    In the above code, userrole values end up being in the wrong grid where numberofschools values should be and vice versa.
    Appreciate any help!
    B.

    You may find this article useful: [http://balusc.blogspot.com/2007/10/populate-child-menus.html].

  • Double clicking brings up selection box rather than highlighting words

    This is a bit of a trivial problem but it's making my editing quite difficult. I'm using Acrobat X 10, with Windows 7.
    Normally when I double click on some text, the word that I am double clicking on will become highlighted. This continues to be the case except for in one specific pdf document: now double clicking opens a selection box rather than highlighting text. If I single click I can highlight whatever text I want, but double clicking no longer highlight a particular word. This is very incumbersome for my annotating/highlighting technique. It only happens with this one pdf, any other pdf and the selection tool is back to normal.
    Any idea why this is happening for this one particular pdf, but none of the others, or any way that I can make it highlight words via double clicking again?
    Edit: On further inspection, the problem seems to be that for this particular document, acrobat reader cannot detect specifc words, only individual characters. When I highlight a sentence, normally the text highlighted would naturally jump to the end of the word, but here it will only start/stop where I begin and end dragging the cursor. I have used the Recognise Text tool, but this did not fix the problem as it said it had already recognised the text throughout the document.             

    Can you use the "Prompt" section of the Property Palette instead and leave Label as null. Prompts can be aligned to the left, but, without trying it in Forms 4.5, am unsure about your highlight issue.

  • Disabling Select Boxes

    Hi,
    IE (ver 7 or less) has a bug wherein it makes the SELECT box present in the page to be the topmost layer. I have a requirement wherein i need to display a div region over the iframe present in the body of the HTML page (the div becomes the top-most layer now - disabling the other elements present in the background). I am unable to disable the SELECT box present in the iframe, though i am able to disable the other SELECT boxes which are present outside the iframe.
    Has anybody faced a similar issue - if so can you suggest a probable solution for the same ASAP.
    Regards,
    Venky

    Hello,
    The solution the dropdown menus in APEX use is to display an empty iframe underneath the menu but over the select item to block out the select item.
    Take a look at this link they have 2 different ways of fixing this. http://www.codetoad.com/forum/20_22736.asp
    Do a quick google search there are some more solutions to this problem.
    Carl

  • How To Hide Time Selection Box from Advance Date Filter in Powerview

    Hi Experts,
    Is there any way to hide Time Selection box appearing in Advance Filter mode for Dates in PowerView??
    Thanks and Regards,
    Mukesh Singh

    Hi Mukesh,
    We can click the Advanced Filter Mode icon on the first to the right of the field name in the Filters area to switch between basic and advanced filters modes. At this time, we can select date and time in the selection box. But there is no such feature for
    us to hide the time selection box in current release of Power View.
    As per my understanding, we can select a time that has no impact on the data in the time selection box to work around this issue.
    Thank you for your understanding.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Stop auditing select statements issued against SYS objects

    Hi,
    My current client has a requirement to track destructive updates (i.e. insert, update, delete) issued by users who can connect directly to the database. At the moment though, SELECT statements issued against SYS-owned objects are also being captured to the Oracle audit trail. For the time being at least these need to be disabled.
    I've issued NOAUDIT SELECT TABLE/SEQUENCE and NOAUDIT SELECT ANY TABLE/SEQUENCE commands, as has a user with the SYSDBA privilege, and they're still being logged. Is there any way to switch these off? I don't know if it's significant (I'm not a DBA by trade) but the audit_sys_operations parameter is set to True.
    My client is currently running Oracle Database 10.2.0.5.0 standard edition.
    If anyone has any suggestions I'd be grateful.
    Thanks in advance,
    Steve

    Hi,
    Thanks for the input so far ...
    @Eduardo and KarK ...
    show parameter audit
    audit_file_dest string D:\ORACLE\PRODUCT\10.2.0\ADMIN\USSUPM2\ADUMP
    audit_sys_operations boolean TRUE
    audit_trail string DB, EXTENDED
    If we set audit_sys_operations to FALSE, won't that stop auditing of all actions carried out by, for example, someone who connects as SYSDBA? That is something that's still needed to be captured. Unfortunately they go to the WIndows Event Log but at least they're captured somewhere.
    @Hemant
    This auditing was in place before my client took me on, so I can't say what was used to initiate it unfortunately. What I can say though is that they absolutely don't want to turn off auditing by SYS- type users, just SELECT against SYS-owned objects.
    Thinking simplistically, could I just write a script which trawls dba_objects for sys-owned tables, views and sequences and explicitly issues a noaudit select against what's found, and get one of the sysdba-type people we have access to to run it?
    Thanks in advance (again)
    Steve

  • Getting error while uploading Product Foundation Selection Set

    Hi,
    While uploading the extract of Product Foundation selection set, I am getting the error in the Code Combinations API.
    The error is :
    An unexpected error has occurred. Please inform your system administrator that the error: ORA-12899: value too large for column "GL"."GL_CODE_COMBINATIONS"."DETAIL_POSTING_ALLOWED_FLAG" (actual: 3, maximum: 1) occurred when the FND_FLEX_SERVER package tried to execute the SQL statement below.
    If tables or sequences do not exist this may indicate a problem with your installation. Make sure grants and synonyms exist so that all tables, views, and sequences in the SQL statement are visible from the database account in which the FND_FLEX_SERVER package resides (usually APPLSYS).
    If this is a select statement and the last portion of the where clause is in incorrect, then an invalid where clause may have been supplied in the flexfield definition. The error is probably either in the form, or in a server-side package that calls the flexfield validation routine.
    SQL statement (first 1000 bytes):
    insert into GL_CODE_COMBINATIONS (CODE_COMBINATION_ID, CHART_OF_ACCOUNTS_ID, ENABLED_FLAG, SUMMARY_FLAG, START_DATE_ACTIVE, END_DATE_ACTIVE, LAST_UPDATE_DATE, LAST_UPDATED_BY, DETAIL_BUDGETING_ALLOWED_FLAG, DETAIL_POSTING_ALLOWED_FLAG, ACCOUNT_TYPE, REFERENCE3, JGZZ_RECON_FLAG, SEGMENT1, SEGMENT2, SEGMENT3, SEGMENT4, SEGMENT5, SEGMENT6) values (:FND_BIND1,:FND_BIND2,:FND_BIND3,:FND_BIND4,:FND_BIND5,:FND_BIND6,sysdate,:FND_BIND7,:FND_BIND8,:FND_BIND9,:FND_BIND10,:FND_BIND11,:FND_BIND12,:FND_BIND13,:FND_BIND14,:FND_BIND15,:FND_BIND16,:FND_BIND17,:FND_BIND18)
    The value of Detail Posting Allowed Flag = 'Y' only. I am afraid if API is counting quotes (') as a separate character. And if this is the case, then do we have any patch for the same?

    Hi,
    We are on 12.1.1 version and we are in the process to download below mentioned patches.
    1) 8602263 -- Generic Platform (American English)
    2) 8652905 -- Generic Platform (American English)
    3) 8661732 -- Generic Platform (American English)
    4) 8599456 -- Linux x86 (American English)
    But while downloading we are facing some issues. Once we find the patch from Support.oracle.com and click on download, it is displaying a page with error. Still we are trying to find out if there is something wrong with our network connection. In the meanwhile, if possible, request you to check if the Download is working fine at your end from Support.oracle.com
    And as we dont have privilage to raise an SR, I am not able to download the 5th patch related to GL.
    Appreciate your help ("as always") as I have completed the entire Selection, Extraction and Transformation part and now waiting to Load Product Foudnation Extract so that Ledger will start appearing in the system.
    With Regards,
    Vishal majithia

  • Huge select box fails..

    I have a massive amount of items in a select box, and that produces an error because the string is too long I guess.
    What kind of other posibilities is there??
    I have an order page, where I have to add some order lines. In each line I have a selectbox where I can choose which item has to be in the orderline. But now I have so many items that the error occurs. I cant really find another way to easily add items to the orderline.
    Thanks
    Bjarke

    Hi Sir. I'm kind of a beginner with APEX and I tried implementing the work-around with the solution you provided but I'm getting stuck. Is there anyway you can help? I would really appreciate it, and I promise not to pester you with any more questions!
    1 -REGION SOURCE FOR TABULAR FORM:
    select
    "ROOM_NO",
    "BUILDING",
    "ROOM_NO" ROOM_NO_DISPLAY,
    "GUEST_NAME",
    "COMPANY",
    "BADGE",
    "ARRIVALDATE_",
    "DEPTDATE",
    "NO_PAX",
    "BUILD_ID",
    "VACANCY",
    "REMARKS",
    "RESIDENT"
    from "#OWNER#"."HOTEL"
    2 - SETTINGS FOR GUEST_NAME COLUMN:
    Display As: Select List (query based LOV)
    Display Extra Values: Yes
    Display Null: Yes
    Null display value: -Select-
    Null return value: (leave blank)
    List of values definition:
    SELECT NULL d, NULL r FROM DUAL
    3 - PL-SQL REGION DEFINITION:
    Template: No Template
    Display Point: Before Footer (so that it is after the tabular form)
    Region Source:
    BEGIN
    HTP.P('<script type="text/javascript">');
    HTP.P('var depts = new Array (');
    HTP.P('new Array("%null%","-Select-")');
    FOR d IN (SELECT NUMBER, LAST, FIRST FROM MASTERTABLE ORDER BY 1)
    LOOP
    HTP.P(', new Array("' || d.LAST || '","' || d.FIRST || '")');
    END LOOP;
    HTP.P(')');
    HTP.P('</script>');
    END;
    REGION HEADER:
    <script type="text/javascript">
    function appendToSelect(pSelect, pValue, pContent)
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all)
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    else
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    REGION FOOTER:
    <script type="text/javascript">
    function setLists(f)
    var fItems = document.getElementsByName(f);
    var x;
    var v;
    var o;
    var d;
    for (x = 0; x < fItems.length; x++)
    o = fItems[x];
    v = o.value;
    o.options.length = 0;
    for (d = 0; d < depts.length; d++)
    appendToSelect(o, depts[d][0], depts[d][1]);
    o.value = v;
    if (o.selectedIndex == -1)
    o.selectedIndex = 0;
    setLists("f03");
    </script>
    I think the problem is that the SELECT LIST that I'm attempting to populate comes from a different table (MASTERTABLE) than the region source for the tabular form (HOTEL). If that is an issue, can you provide me with the solution? I would greatly appreciate it if you can help...

  • How to do it?? in SELECT BOX

    here is the bean class sample code of getting the result set from
    database
    public void setMembers2()
    String query1="select e.idcode from employee e,wb_login w where e.idcode=w.idcode ";
    stmt1=conn1.createStatement();
    rs1=stmt1.executeQuery(query1);
    System.out.println("Executed query");
    if(rs1.next())
    do{
    id=rs1.getString(1);
    System.out.println("THE IDCODE IS JAVA "+id);
    setId_code(id);
    } while(rs1.next());
    else
    System.out.println("THE IDCODES ");
    here is the sample code in jsp i have to populate the Idcode's in SELECT BOX
    <select name="idcode" size="1" >
    <%
    String str1="";
    promotionbn.setMembers2();
    str1=promotionbn.getId_code();
    System.out.println("THE IDCODE IN JSP PAGE IS "+str1);
    %>
    <option value="<%=str1%>"> <%=str1%>
    </select>
    But in the select box priniting only one record.........

    Hey,
    Where are u defining the get/set methods method ??. The code u gave is not very clear. Acording to what u gave below it will surely print only one record probably the last one.
    KM
    here is the bean class sample code of getting the
    result set from
    database
    public void setMembers2()
    String query1="select e.idcode from employee
    e,wb_login w where e.idcode=w.idcode ";
    stmt1=conn1.createStatement();
    rs1=stmt1.executeQuery(query1);
    System.out.println("Executed query");
    if(rs1.next())
    do{
    id=rs1.getString(1);
    System.out.println("THE IDCODE IS JAVA
    CODE IS JAVA "+id);
    setId_code(id);
    } while(rs1.next());
    else
    System.out.println("THE IDCODES ");
    here is the sample code in jsp i have to populate the
    Idcode's in SELECT BOX
    <select name="idcode" size="1" >
    <%
    String str1="";
    promotionbn.setMembers2();
    str1=promotionbn.getId_code();
    System.out.println("THE IDCODE IN JSP PAGE IS
    "+str1);
    %>
    <option value="<%=str1%>"> <%=str1%>
    </select>
    But in the select box priniting only one
    record.........

  • The html select box option is not getting displayed properly in IE11

    The html select box option is not getting displayed properly in IE11
    I have developed a website that has a select box drop down. The select box drop down is getting displayed properly in IE9. But in IE11, if I am selecting any option apart from the first one, the whole select box option is getting moved up in the page.
    In IE11, if option 2 is selected, then the select options is getting moved up. But in IE9, if option 2 is selected, then the select options is getting displayed properly.
    Please let me know the fix so that the select options are displayed in the same manner as in IE9.
    Sorry but I am unable to upload images as this site is throwing some error

    Hi Kevin Shen,
    Thanks for post.
    I tried above code in ie 11(version 11.0.9600.17633).
    But it is not working. If you select option 2, and open select box then it open on the select box.
    It should open below the select box.
    Code for above:-
    <select>
    <option>1</option>
    <option>2</option>
    <option>3</option>
    </select>
    Sorry I could not attach screen shot. We have normal select box with three options. If we select option 2, it is showing option list on the select box. It is coming below the select box in ie 10 and other browse like chrome. 
    So what we should do, so that all options will come below the select box?
    Thanks,
    Yogesh Toke

Maybe you are looking for

  • Do Browserlab generate automated results or is only effective for screenshots?

    Hi.. 1) We are looking for cross browser test tool for our project which can  facilitate comparison of layout difference in different browsers, image, text differences and provide consolidate results without manual intervention. Would like to know wh

  • Deleting imovie files after export

    Can I delete my imovie folders for movies that i have finished and exported to a .mov file? The folders with the original imovie files are huge (17 gig on average) and I need the drive space. To make dvd's in the future do I only need the idvd projec

  • IE8 unsupported error after updating to ZCM 11 Support Pack 1 (11.1)

    Does any experience this problem after updating to ZCM11sp1? I keep getting IE8 unsupported error after updating to ZCM 11 Support Pack 1 (11.1) although I am running on IE8 already. Now remote management is not working because of this incompatible b

  • Creating a border around a image

    I am trying to creat a bborder around our company logo so it can be put on a transparent sticker. I currently have the logo on a white background

  • How to switch New TAB/New Window in click right menu link ? Firefox 4

    Hi there, I just installed Firefox4. I was near perfect although they switch Open in New Tab/Window position. I fixed yet when clicking right on a link using userChrome.css following settings : <pre><nowiki> #context-openlink { -moz-box-ordinal-group