Problem in assigning id to DIV inside a datatable

In our JSF application, we have a requirement to display a separate DIV for each row which is iterated inside a datatable.
In order to display the contents under a particular DIV, we need to capture the id of that DIV.
But since the DIV resides within verbatim inside the datatable, a unique identifier could not be associated to each DIV.
The code looks like this�.
<h:dataTable id="product_entity_data_table" width="690" border="0" cellspacing="1" columnClasses="clsTableBodyL"
rowClasses="clsAlignTop clsListDarkBackground,clsAlignTop clsListLightBackground"
headerClass="clsTableHeaderBottomL" value="#{entityImpactListBean.currentProductsDSIDetailBeanList}"
var="productDSIDetail" rendered="#{impactListBean.entityProductFlag}">
<h:column>
<f:facet name="header">
</f:facet>
<h:panelGrid id="product_ent_dsidetail_newDataValue_pg" columns="1">
<clsFields:radio id="dsi_newdatavalue" value="#{productDSIDetail.newProductValue}"
onclick="formDivContent(#{productDSIDetail.productName}, #{productDSIDetail.dataLevelID}, this.id);">
<f:selectItems value="#{impactListBean.radioValueList}" />
</clsFields:radio>
<h:outputText id="product_ent_dsidetail_errorMessage" styleClass="clsErrorMessageB"
value="#{productDSIDetail.errorMsg}" rendered="#{productDSIDetail.errorMsgFlag}">
</h:outputText>
</h:panelGrid>
<f:verbatim>
<div id="div<%=divCount++%>" style="display:none;">
<iframe name="frame<%=frameCount++%>" width="0" height="0" align="center"
frameborder="0" onload='showData(this);'></iframe>
</div>
</f:verbatim>
</h:column>
</h:dataTable>
Inspite of introducing divCount (code highlighted in blue), every time the id associated to every DIV is the same, which is �div1�.
Any help in this regard will help us solve this issue.

Hi ,
If your are not sure about user name , use the wildcard pattern , but make sure you use only a single *
i.e
1)IF User = shilpa*
THEN Portal Desktop = dekstop path
2)IF User =*  shilpa  *
THEN Portal Desktop = dekstop path
Here 1st option will work , 2nd will not work. "  use only a single *   "
Regards,
Sunitha Hari

Similar Messages

  • Problem with binding of a selectManyCheckbox inside a dataTable

    Hi,
    first i want to point out that my english is not the best. :)
    A german version is followed at the end of the english text.
    I have a class "MyClass" with few attributes like:
    private long id;
    private String text;
    private Set<MyClass2> childs;
    An a second class "MyClass2" wich also have some attributes:
    private long id;
    private String text;
    Now i have a List with lots of objects from typ "MyClass":
    List myList = new ArrayList();
    // Sample Data!!
    for (int i=0; i<100; i++)
    MyClass1 m1 = new MyClass1();
    m1.setId(i);
    m1.setText("MyClass1 Line " + i);
    // Now add some "childs":
    for (int j=0; j<i*2; j++)
    MyClass2 m2 = new MyClass2();
    m2.setId( i );
    m2.setText("Sample "+ i);
    m1.getChilds().add(m2);
    myList.add ( m1 );
    So now i want to show the ID and text every Object of MyClass1 on my "test.jsp" (width JSF Tags).
    The Collections inside this class should display as checkboxes (value = id, label = text).
    Sample:
    ID: +1+ TEXT: MyClass1 Line 1
    CHECKBOXES:
    [x] Sample 0
    [x] Sample 1
    ID: +2+ TEXT: MyClass1 Line 2
    CHECKBOXES:
    [x] Sample 0
    [x] Sample 1
    [x] Sample 2
    [x] Sample 3
    Okay i think you know what i mean. ;-)
    I tryed it also with a dataTable to iterate in "myList" and use a selectOneMenu with selectItems to generate the checkboxes.
    Here is the code:
    <h:dataTable value="#{myBean.myList}" var="rowInstance" binding="#{myBean.dataTable}" id="dataTable">
    <h:column>
    <h:outputText value="ID: #{rowInstance.id}" />
    <h:outputText value="TEXT: #{rowInstance.text}" />
    </h:column>
    <h:column>
    <h:selectManyCheckbox id="cbox" styleClass="checkbox">
    <f:selectItems value="#{myBean.childs}"/>
    </h:selectManyCheckbox>
    </h:column>
    </h:dataTable>
    Maybe you see the that i've used childs in the selectItems.
    This is a methode like that:
    public SelectItem[] getChilds()
    MyClass1 mc1 = (MyClass1) dataTable.getRowData();
    // now i iterate the childs and make for each a SelectItem()
    Also you maybe see that i have no binding on selectManyCheckbox, because i have no idea how it works. :-)
    I've tried to bind it to a String[] but and the end this String[] always contain the last low.
    My Question is now:
    When the user pressed the submit Button how can i figure out which Checkboxen the user clicked ?
    Thank you a lot.
    Now the german version (surley better explained):
    Hallo nochmal,
    ich habe versucht auf englisch mein Problem zu schildern.
    Was mit sicherheit nicht zu 100% gelungen ist, deshalb hier noch mal eine deutschsprachige Version (maybe some germans out there).
    Wie oben abgeblidet habe ich im Prinzip zwei Klassen.
    Die erste Klasse "MyClass1" hat eine Collection die Objekte von der Klasse "MyClass2" enth�lt.
    Nun m�chte ich auf meiner JSP Seite die JSF Tags benutzt eine Liste von Objekten (die vom Typ "MyClass1" sind) abbilden.
    Die Collection innerhalb dieser Klasse soll als Checkboxen dargestellt werden.
    Ich habe es ohne gro�e Probleme hinbekommen, dass er das so anzeigt wie ich das m�chte.
    Nur habe ich z.Z. noch Probleme damit wie ich sp�ter herausfinde, welche der Checkboxen denn nun angew�hlt sind.
    Normalerweise w�rde man ja ein binding machen, so k�nnte man alle ausgew�hlten Checkboxen (getSelectedValues()) ja bekommen.
    Da aber die Anzahl der Objekte immer unterschiedlich ist kann ich nicht die entsprechenden Variablen anlegen.
    Deshalb die Frage: Wie bekomme ich mit welche der Checkboxen ausgew�hlt wurden? Wie muss das binding aussehen?
    Vielen Dank.
    Greetings from Germany. :)

    Just bind it to the row object.
    JSF<h:dataTable value="#{myBean.myDataList}" var="myData">
        <h:column>
            <h:selectManyCheckbox value="#{myData.selectedItems}">
                <f:selectItems value="#{myData.selectItems}" />
            </h:selectManyCheckbox>
        </h:column>
    </h:dataTable>MyDataprivate List<String> selectedItems; // + getter + setter
    private List<SelectItem> selectItems; // + getter

  • Putting an ap div inside a container?

    Hello,
    I am rather new to dreamweaver and am stuck with an issue. It is dealing with putting an ap div inside a container.
    I am not planning on becoming a web developer, I am a VFX artist, and have some of my work up on the web for employment.
    Since I don't know code and other complicated things with Dreamweaver, I decided to do an "easy" way of designing my page.
    I basically made a giant container, and then dragged out ap divs inside it where ever I wanted.
    I came back another day and added more ap divs, only this time - they didn't stay with the container. I am guessing I'm missing a step
    or did something a little different this time, and am trying to find out what.
    Here is my website for reference:
    www.mikelarned.com
    As you can see on the project page for example, when you click and drag the corner of the web window left and right, the top title moves with the page.
    And the videos/ other text under, stays static.
    I am hoping there is a way to resolve this issue without code. Maybe theres a way with the options on the right hand side of Dreamweaver to drag that ap div into the container?
    If not, hopefully there is an easy way to copy and paste the code.
    Thanks for you time and help.
    -Mike

    elementsk8er506 wrote:
     I am a VFX artist, and have some of my work up on the web for employment.Since I don't know code and other complicated things with Dreamweaver, I decided to do an "easy" way of designing my page.
    Hmm. I wonder what your reaction would be if I came along and asked a similar question about VFX? I know nothing about VFX, but want to do it the easy way without learning anything... Each technology requires certain skills and at least some basic knowledge. Unfortunately, a lot of people unfamiliar with web design think absolute positioning is the easy way. It's actually quite an advanced technique that has many people tearing out their hair until they learn how it really works.
    Basically, the problem with AP (absolutely positioned) divs is that they are removed from the normal flow of a web page. You might think you're putting them in a container, but you're not. Absolutely positioned elements float in front of the web page and have a stacking order defined by their z-index property. The top and left coordinates are absolutely positioned with regard to the element's containing block. The containing block is the element's most immediate ancestor that is also positioned using either fixed, relative, or absolute positioning. If no such ancestor exists, the containing block is the page itself.
    If you understand HTML and CSS, this is a relatively easy concept. If you don't, it's as difficult as VFX would be for me.
    To put this in as simple terms as possible, your container must also use CSS positioning. A common way to do this is to set the CSS rule for the container to position: relative without defining coordinates for the top and left. All AP divs nested inside then take their coordinates from the container, which you can center by giving it a width and setting the left and right margins to auto.

  • Facing problem of Assigned Value in CJ33

    Hi All,
    I am facinfg a problem with Assigned value shown in CJ33 T code. My Sceneraio is like this.....
    1. I have activated availiblity controll on Released Budget.
    2. I have maintained tolerence limit  only for PR and PO.
    Now My problem is  that I budgeted one of my WBS as INR2000, Same amount is released also. I created a PR  for INR500. The same PR is converted to a Purchase order of INR500.
    Now in CJ33 T code my assigned value is comming as INR1000. Which is not correct for me because i have only used INR500 for my INR2000 budget and i want to use my Remaining INR1500 budget for another PR, But system is giving me Budget excedded error.
    Please advise. It would be a great help of all of you.
    Regards
    Rahul

    Hi Rahul,
    Refer this thread,
    Assigned Values For Project
    I had a strong feelilng that you were using ECC 5.0. I had come across the same issue. Just refer the note and try to apply the notes mentioned there. I am not sure which one i had applied but you can try out with the note number that Muraleedharan has mentiond in the thread. It should work.
    Kindly revert.
    Best Regards,
    Gokul

  • Problem in assigning a coloumn as a Null.

    Hi All,
    I m facing a problem to assigning a coloumn as "Allow Null".
    Plz help me..
    Regards
    Yogesh

    Hi Kumar,
    You can use UserFieldsMD.Mandatory property to allow the UDF to be empty or not.
    Note: You do not have to manage the real database value for the UDF. B1 is responsible to do this.
    Regards Chris
    Message was edited by:
            Chris Kroos

  • Problem in Assigning the Business System

    Hi,
       I have problem in Assigning the Business System at Configuration when I am trying to configure the Communication Channel. I had created two Software Components and also Two Technical Systems (Third Party) and Business System and I imported the SWC into repository and done with the design and now I am not able to Configure, can anyone help me out as this is very urgent.
    Thanks in advance
    Andy

    Hi Andy,
    Check if you have created you business system according to the steps given here, maybe you missed out on something.
    Configuring a Business System
    http://help.sap.com/saphelp_nw04/helpdata/en/ae/e3bd4f6b61e146ad1384954ecabb41/content.htm
    Defining a Business System as a Service
    http://help.sap.com/saphelp_nw04/helpdata/en/3e/60653f0c9fa075e10000000a114084/content.htm
    Regards,
    Chandra

  • Problem in assigning date valje to field

    Hi,
    I have  a problem in assignning date value to field.
    i am retriving date from a table and assigning it to a field which is date type in the form.. but it is not reflecting..
    Error: form Bad Value..
    how to assign the date values in the form..
    Mahi

    Hi mahendra,
    I think the Bad Value Error Occurs only if the databound datasource in the form must have different data type...
    oForm.DataSources.UserDataSources.Add("eDate", SAPbouiCOM.BoDataType.dt_DATE, 10);
      SAPbouiCOM.EditText oEdit;
      oEdit = oForm.Items.Item("1").Specific;
      oEdit.DataBind.SetBound(true, "", eDate);
    with Regards,
    MadhuSudhana Rao.G

  • Problem in assigning field symbol to a nested internal table

    Hi All,
    I have searched the forum but could not find a solution to this problem. I have a requirement where I need to define an internal table within an internal table, so I have used pointer within the outer internal table(itab2) which point to the inner table. However, I am facing problem while assigning the pointer.
    data: begin of struct1 occurs 0,
            fld3(10) type C,
           end of struct1.
    data: begin of itab2 occurs 0,
            fld1(10) type C,
            fld2(10) type C,
            p_inner like ref to struct1,
          end of itab2.
    field-symbols <inner_table> type any.
    I want to assign "itab2->p_inner->* " to "<inner_table>".
    However, the following statement is Not working:
    assign itab2->p_inner->* to <inner_table>.
    I want to fill the values within fields fld1, fld2 and fld3 and append it in itab2.
    The final table should be like:
    ITAB2:
    fld1    fld2    fld3
    aa      bb      cc
                     dd
                     ee
    11      22      33
                     44
                     55
    I have tried many other ways too but could not suceed, please help.
    Thanks,
    Vishal.

    Thanks Matt,
    But how do I append the values within this internal table ??
    When I am using the following code:
    ls_wa-fld3 = 'A'.
    ls_wa-t_in-fld1 = 'B'.
    ls_wa-t_in-fld2 = 'C'.
    ls_wa-t_in-fld1 = 'D'.
    ls_wa-t_in-fld2 = 'E'.
    append ls_wa to lt_tab.
    Its giving an error that:
    The data object "LS_WA" does not have a component called "T_IN-FLD1".
    I wanted the values to be appended in the following way in lt_tab:
    fld3     fld1     fld2
    A     B     C
         D     E
    Please help.

  • Problem in Assigning  table to access sequence

    Dear All,
    i am facing problem in assigning table to access sequence for billing output type.
    I have created 1 table B902 with the combination of Sales org,plant ,Division,Billing doc type.
    but if i am going to assign with access sequence system is taking for Billing type & division & for other its showing red marks & errorr.Access sequence->Aceessess->Field.if i am clicking on field in I/O column for plant its displaying negative.
    bcause of this i am not able to make condtion record.
    Message is Select a document field for WERKS
    Regards
    ajit
    Edited by: SAP SD AJIT on Mar 1, 2010 3:18 PM

    Hi SAP SD AJIT ,
         Go to IMG --> Sales and Distribution --> Basic Functions --> Output control --> Output Determination --> Output Determination using condition technique --> Mantain  output  Determination for billing document --> Mantain condition table,  in the pop-up choose the option "Field catalog: Messages for billing documents", there you can add standard field into the catalog, so you can add WERKS and the other one "document structure" I don't know what field it is, but if it is and standard field you can add it. If you have a Z field you need ABAP help to add the Z field to the structure "KOMKBZ5" and then you can add it to the catalog.
    Regards,
    Mariano.

  • Problem in assign after service callout

    Hello,
    I'm using OSB 11 g. I have a problem with assign after a service callout.
    The XML returned after the service callout is listed below -
    <S:Body xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    <getCreditRatingResponse xmlns:ns2="http://www.alsb.com/order/" xmlns="http://www.alsb.com/">
    <return>750</return>
    </getCreditRatingResponse>
    </S:Body>
    I have created a separate stage with an assign for storing the return value (750) into the variable creditRating, and both of the following statements are not working (unable to see assigned $creditRating in the trace)
    1. $soapResponseBody/alsb:return/text()
    2. fn:data($soapResponseBody/alsb:return)
    There are no namespace issues. Request help in this regard and thanking you in advance.
    Regards
    Shyam.V

    Hi
    I too ran in the same issue.
    The reponse which i get after service callout is
    added $soapResponseBody
    <S:Body xmlns:S="http://www.w3.org/2003/05/soap-envelope">
    <ns2:getCreditRatingResponse xmlns:ns2="urn:BasicOrderMgr" xmlns="http://www.example.org">
    <ns2:return>750</ns2:return>
    </ns2:getCreditRatingResponse>
    </S:Body>
    and the service callout is followed by an assign where i use the following to assign the variable creditRating
    $soapResponseBody/getCreditRatingResponse/return/text()
    and also tried fn:data($soapResponseBody/*:return) {there is no namespace prefix declaration}
    Please help as i am stuck when i try using the creditRating variable in next route node.

  • Problem with Assign reference document.

    Hi all,
    I defined transaction input parameter type Xml.
    I used Reference Document Loader to load document (structure.xml) below.
    <?xml version="1.0" encoding="UTF-8"?>
    <SO_VALIDATION>
        <L4_SO_ID/>
        <L4_SOI_NO/>
        <PPC_STATUS/>
        <PPC_INFO/>
    </SO_VALIDATION>
    I used menu command Assign Reference Document, to assign above document to transaction input.
    I tryed to use this transaction in vs.net application as a web service.
    But there is no xml structure in InputParams in web service.
    I tryed alot but i did not achieve.
    What must i do?
    Thanks.

    cml_bzl,
    I'm using version 12.04 and I have not had any problems with assigning reference documents and using .NET.
    You should not have to do anyting special to get the transaction inputs to show up in .Net. To map the output I do the following:
    1. Create an output transaction variable and assign it's type as XML
    2. Using a XML document block to create and XML document for your output transaction variable
    3. Assign the XML document as the reference for the output transaction variable.
    THis works for me every time. If you change the transaction parameters, make sure you update the web service form the .NET side.
    Glenn

  • Problem to run the Crystal report inside from SAP B1 based on SQL views.

    Hello,
    I have a problem to run my Crystal report inside from SAP B1 which is based on SQL views.And the SQL views are stored in a separate database in SQL server.The error which i am getting is saying the the tablename does not exist.What i need to do in order to sort this problem.
    Great if somebody can help me to sort out this so that i can run my report based on SQL views stored on separate database other than SAP databases inside from SAP B1.
    Edited by: rozenagrawal on Apr 19, 2011 11:51 AM

    Try using a SQL synonym in your company database for the views outside the company database. I don't know if SBO will let you get away with it, but its worth a shot.
    If your company database is MyCompany and you have a view called MyView in Views database, assuming the view belongs to schema dbo, and you want the synonym to belong to dbo schema in your company database, run this:
    Use MyCompany
    go
    create synonym dbo.OutsiderView for
    Views.dbo.MyView
    go
    select * from OutsiderView
    The select statement should return the contents of MyView in the Views database while you are connected to your MyCompany database.
    For more info, see the Books Online for MSSQL on topic synonym.
    You will need to change your CR options to include displaying synonyms along with tables, views, etc. You may also need to grant select to B1 users.
    Edited by: Cindy Lange on Apr 21, 2011 4:00 PM

  • Regarding problem while assigning logical system

    Hi Friends,
    I had a problem while assigning logical system to the client where in both of my systems are having same client number which belong to 2 different systems.
    while assigning the sender and receiver logical system to the same client i am facing problem stating that an entry has already been made for the same key.
    could any one plz give me a clear idea...while assigning logical systems (cross clients) for 2 different systems having same client number.
    Regards,
    Madhu

    Hello Madhusree,
    I'm running with same problem. I've created two logical systems and assigned them to two different clients. But here pops up the issue while generating partner profiles, throwing error "No active plan version exists". Later when I researched about the issue, I came to know that T77S0 table doesn't have any entries regarding plan versions. Basically, I created two clients by doing "client copy" from source client (800 & 100). And I could see plan version entries in the T77S0 of client 800. So, I thought of assigning just defined logical system to the source client 800 itself. But it throws error saying "entry already exists"; as client (800) is already assigned with other logical system.
    By coming across your post, gives me leap of hope that two logical systems can be assigned to same client. Could you please share me those troubleshooting steps concerning this issue. Points will be awarded.
    Regards, Anil. 

  • Problem in assigning the support team automatically-PFAC_RESPO-13200137

    Hi Gurus,
    I am facing a problem in assigning the support team automatically.
    In the transaction PFAC_RESPO , i maintained responsibilites with rule no. 13200137. I created  criteria for determining partners.
    when i simulate the condition @ PFAC_RESPO it is picking correctly the Support team. But when i created a messgae in satellite system, it is not assigning the support team automatically.
    Could anyone highlight me with some inputs.
    by
    D.K.VIJAYABHASKAR

    Hi,
    In the rule definition and responsibility in tcode: PFAC_RESPO.
    i have mentioned some of the Responsibility Specs, like client, installation number.Then when i simulate the condition (@ simulkate rule resolution) by entering the related details system picks the concerned support team.
    But when i created message and checked, it is not picking any of the support team. Determination not happening.
    I used the standard action profile SLFN0001_ADVANCED.
    Action Definition : SLFN0001_ADVANCED_FIND_PARTNER (When message is created, find support team responsible)

  • Lining up divs inside a main div: Mine not working

    Hello, I need help with my CSS design, I am trying to line many dives inside a container DIV, interestingly only the first div is well
    positioned, the rest lie outside the container all together. I can't figure out what I am doing wrong. Find attached my CSS definitions and also the related code:
    CSS:
    /* id the for main container of index page elements */
    #indexmain{
    background-color:#FFFFFF;
    font-weight: bold;
    color:#00FF00;
    width: 100%;
    height: 600px;
    border-width: 1px;
    border-style: solid;
    border-color: red;
    /* id for welcome label */
    #welcome {
    background-color:#FFFFFF;
    color:#00FF00;
    padding-top: 5px;
    padding-right: 5px;
    padding-left:5px;
    padding-bottom:5px;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size:24px;
    font-weight: bold;
    width: 140px;
    height: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: red;
    top: 160px;
    left: 120px;
    /* id for main container of index elements */
    #welcomemain{
    background-color:#FFFFFF;
    color:#00FF00;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size:24px;
    font-weight: bold;
    width: 60%;
    height: 400px;
    border-width: 1px;
    border-style: solid;
    border-color: red;
    top: 192px;
    left: 120px;
    /* id for description of consumer component */
    #consumerdescription{
    background-color:#FFFFFF;
    color:#00FF00;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size:24px;
    font-weight: bold;
    width: 50%;
    height: 200px;
    border-width: 1px;
    border-style: solid;
    border-right-color:#FF0000;
    top: 0;
    left:0;
    margin-left: auto ;
    margin-right: auto ;
    text-align:center;
    /* id for label of consumer link */
    #consumerlink{
    background-color:#FFFFFF;
    color:#00FF00;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size:24px;
    font-weight: bold;
    width: 50%;
    height: 200px;
    border-width: 1px;
    border-style: solid;
    border-left-color:#FF0000;
    background-color:#CCFF66;
    top: 0;
    right: 0;
    margin-left: auto ;
    margin-right: auto ;
    text-align:center;
    /* id for label of business link */
    #businesslink{
    background-color:#FFFFFF;
    color:#00FF00;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size:24px;
    font-weight: bold;
    width: 50%;
    height: 200px;
    border-width: 1px;
    border-style: solid;
    border-right-color:#FF0000;
    background-color:#CCFF66;
    bottom: 0;
    left: 0;
    margin-left: auto ;
    margin-right: auto ;
    text-align:center;
    /* id for description of business component */
    #businessdescription{
    background-color:#FFFFFF;
    color:#00FF00;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size:24px;
    font-weight: bold;
    width: 50%;
    height: 200px;
    border-width: 1px;
    border-style: solid;
    border-left-color:#FF0000;
    bottom: 0;
    right: 0;
    margin-left: auto ;
    margin-right: auto ;
    text-align:center;
    /* id to control positioning of content*/
    .centerlinkcontent{
         position:absolute;
         top:80px;
         left: 110px;
    .centerdescriptioncontent {
    position:absolute;
    top:50px;
    left:20px;
    .titlelabelconsumer{
    width:100%;
    height:35px;
    background-image:url(../images/Isl_bkgrd.jpg);
    background-repeat:repeat-x;
    text-align:center;
    .titlelabelbusiness{
    width:100%;
    height:35px;
    background-image:url(../images/Isl_bkgrd.jpg);
    background-repeat:repeat-x;
    text-align:center;
    top:400px;
    .searchresultscontainer{
    width:812px;;
    height:62px;
    border-style:solid;
    border-color:#FF0000;}
    .searchresultsimg{
    width:100px;
    height:60px;
    background-color:#CCCCCC;
    left:0px;
    border-style:solid;
    border-color:#9966CC;
    border-width:1px;
    /*.searchresultsdetail{
    position:relative;
    width:700px;
    height:61px;
    text-align:center;
    background-color:#CCCCCC;
    float:right;
    left:101px;
    margin:0;
    padding:0;
    .productdescription{
         position:absolute;
         width:300px;
         height:36px;
         text-align:left;
         left:101px;
         margin:0;
         padding-bottom:10px;
        padding-top:12px;
         border-style:solid;
         border-color:#FFCC00;
         border-width:1px;
    .productmodelno{
    position:absolute;
    width:100px;
    height:36px;
    text-align:left;
    left:401px;
    margin:0;
    padding-bottom:10px;
    padding-top:12px;
    border-style:solid;
    border-color:#996600;
    border-width:1px;
    .productmodelyear{
         position:absolute;
         width:100px;
         height:36px;
         text-align:left;
         left:501px;
         margin:0;
         padding-bottom:10px;
        padding-top:12px;
         border-style:solid;
         border-color:#00FF00;
         border-width:1px;
    .productprice{
    position:absolute;
    width:100px;
    height:36px;
    text-align:left;
    left:601px;
    margin:0;
    padding-bottom:10px;
    padding-top:12px;
    border-style:solid;
    border-color:#000033;
    border-width:1px;
    .productuserid{
    position:absolute;
    width:100px;
    height:36px;
    text-align:left;
    left:701px;
    margin:0;
    padding-bottom:10px;
    padding-top:12px;
    border-style:solid;
    border-color:#990000;
    border-width:1px;
    Related Code:
    <!---Create a container for the search results --->     
    <div class="searchresultscontainer">
        <div class="searchresultsimg"><!--- creating a resized version of uploaded image of product --->
               <cfimage source="#ExpandPath('images/consumer/#Cnsmr_ProductIMAGE#')#" action="resize" width="100" height="60" name="resizedImg" format= "jpg">
               <cfimage source="#resizedImg#" action="writeToBrowser"><!---img src="images/consumer/#Cnsmr_ProductIMAGE#"--->
        </div>
        <div class="productdescription"><font size="+2">#Cnsmr_ProductDESCRIPTION# </font>  <font size="+2"></div>
         <div class="productmodelno"><a href="showProductDetail.cfm?Cnsmr_ProductCountID=#URLEncodedFormat(TRIM(Cnsmr_ProductCountID))#">#Cnsmr_ProductMODELNo# </font> </a></div>
         <div class="productmodelyear"><font size="+2">#Cnsmr_ProductMODELYEAR# </font> </div> 
         <div class="productprice"><font size="+2">#Cnsmr_ProductPRICE#</font> </div>
         <div class="productuserid"><font color="#000066#" size="+2">#User_id#</font></div>
    </div>
    <!--- end of searchresultscontainer --->
    </cfoutput>

    In addition to PZ's reply, you have way too much going on in your stylesheet ;-)  it needs to be streamlined dramatically.
    If you don't undersand the how and whys of using AP (absolutely positioned) divs, it's better not to use them - here's why:
    Why do my AP Divs (layers) move when I resize the browser window?
    You may want to run through a few CSS tutorials before going any further, so as to get your head around how CSS layouts work and how to use a stylesheet effectively  :-)
    http://www.macromedia.com/devnet/dreamweaver/articles/css_concepts.html http://www.adobe.com/devnet/dreamweaver/articles/bk_dwcs4_mastering_css/bk_dwcs4 _mastering_css_04.pdf
    LIST OF CSS TUTORIALS:
    http://www.adobe.com/devnet/dreamweaver/css.html

Maybe you are looking for

  • Table name in which Subtotals are getting stored

    Hi All, In V/08 transaction, for a pricing procedure e.g. X, A column is available for Subtotals. When I press F4 option for Subtotals, there I am watching 27 options. Now I want to know, for which option number the subtotal is getting stored in whic

  • Mail and Preview crashes when printing.  I have 10.8.3. error message something about est-e-filing plug in.  Help anyone??

    I have the latest OS 10.8.3 and just recently Mail and Preview constantly crashes when printing. It seems that it is missing a plug in or something.  Error messge is Mail quit unexpectedly when using the est-e-Filing-pdes plugin. Same message in Prev

  • Currency Load to EPMa

    I need to be able to create a batch load process to load currency values using EPMa. I attempted to use the standard Planning command line file, but this appraoch does not work with EPMa. I have manually typed in the currency values for the plan scen

  • MOVED: Newby trying to Overclock i7 970 on X58 Pro-E

    This topic has been moved to Overclockers & Undervolting & Modding Corner. https://forum-en.msi.com/index.php?topic=150025.0

  • Slow Restarts after Repairs or Updates?

    Hi , New iMac ,all is reasonably well. When I update or do a disk repair, the restarts are very slow ...about 3 minutes with the display staying on the blue screen for a long time . I have read about the "enhancer bundles" but I don't think I have th