Table cell scroll bar overflow- why doesnt it work?

Hi everyone.
Ok, im have an existing document/site:
http://www.helenbwilson.com/helen-portfolio-1.html
I want the table cell in the left to have a scroll bar (only
with the height part). I want the "block" of the images to have a
height of 400px. Now, I have tried to do this, and for the most
part got it to work-in another document:
http://www.helenbwilson.com/CSS-test-01.html
I am trying to replicate, but I have absolutely no idea why
its not working now.
I applied a css style and I want the same type of scroll, so
when there are more images, it can have a scroll bar.
Can anyone tell me what Im doing wrong? If I am not being
clear, please let me know.
Any info would be appreciated.
Thanks
-psy

I think you mean something like this:
Put this in your head:
<style type="text/css">
<!--
.imageBlock {
display: block;
float: left;
height: 400px;
width: 250px;
overflow: auto;
background-color: #FF0000;
-->
</style>
put this in your body:
<div class="imageBlock">
</div>
If the table or other content you place inside your
'imageBlock' div, is higher than 400 px, you'll get a vertical
scrollbar.

Similar Messages

  • Table controls (scroll bars) with LSMW

    Hi,
    I have to fill a table control from a lsmw project, my problem appears when we need to scroll down table control because there are no more free lines.
    My question is if it's possible to manage table control scroll bars to scroll down when all rows will be taken, using lsmw.
    Any idea about it would be very appreciated
    Thanks in advance

    Hi Javier,
    I suggest you is that you should loop at the internal table from which you are filling the data into the table control or use a counter for number of rows comming up at a time in the table control. And then put code for ADD+ button. Do this till the end of file or table.
    I hope this helps.
    Also you can use TCode for the LSMW to upload one record at a time. U can try this also.
    Regards,
    Usha.

  • Why doesnt pages work on my ipad 2 and what is the alternative

    why doesnt pages work on my ipad2 and what is the alternative

    Assuming that your iPad isn't on iOS 5 (your current version is shown in Settings > General > About > Version on the iPad), then to update to it you first need iTunes 10.5 on your computer - if you don't have itunes 10.5 then you can download it from here http://www.apple.com/itunes/download/.
    To update your iPad connect it to your computer's iTunes and select it on the left-hand side of iTunes. Then, if the update isn't automatically detected and you are prompted to download it, on the right-hand side on the Summary tab click the Check For Updates button

  • How to exclude Table`s  scroll bar from Drag Source

    Hi
    i have an af:table inside other af:table as its column like below sample
    and user can drag inner table and drop it to other row of outer table but when user click on the scrollbar of inner table to scrolling the inner table selected as drag source and user con not scroll inner table
    so is it possible to exclude scroll bars of table from drag source?
    depart Id
    Dep name
    Emp
    dep1
    IT
    emp Name
    emp email
    emp Tel
    jan
    [email protected]
    8990
    dav
    [email protected]
    8844
    dep2
    Finance
    emp Name
    emp email
    emp Tel
    smit
    [email protected]
    8745
    mary
    [email protected]
    8952

    Hi,
    Always mention your JDev version.
    As Timo mentioned, it would be easier for you if you use a treeTable. Any specific reasons why you don't want to use it? If you want to do it through iterator, you could also use a grid layout (depends on your JDev version) to make it look like a grid.
    -Arun

  • Issue in table control scroll bar

    Hi experts,
    In Table control I used the following code,
    Refresh control 'TCDATA' from screen '200'.
    If i use this code i cant able to  scroll the data when the table control having multiple lines.
    Can any one suggest me?. what i need to do for this..
    Edited by: sai.bala on Sep 17, 2010 12:22 PM

    Hi ,
    try this...
    Refresh control 'TCDATA' from screen '200'.
    "write this statement below refresh table control
    * Describe lines of internal table to extend the table control Vertical
    * scroll bar
      DESCRIBE TABLE <tablename> LINES TCDATA-lines.
    prabhudas

  • Table Control Scroll Bar inactive

    Hi All,
    I am facing a strange problem. I have placed a table control on my screen and have added the columns. Rest of the functionality is also fine. However, even when the number of rows in the table exceeds its height, the Vertical Scroll bar is inactive and I cannot scroll down to the hidden line items. The horizontal scroll bar is working perfectly.The color of the Vertical Scroll bar is also Dark grey (as in inactive.)
    I fail to understand what could be the reason for this? Helpful answers will be suitably rewarded
    Regards,
    Madhur

    Hi Madur,
    Try this code :
    (assume that the name of your table control is T1)
    In the screen logic you will have:
                    Loop with control T1.
                       module get_Looplines.
                    Endloop.
                        Module get_looplines.
                          Looplines = sy-loopc.
                        Endmodule.
    In the PBO of the screen you will have a module that loads the itab and determines the total number of lines read.
                   Module load_itab.
                    .      (select database table and
    append to itab)
                    describe table itab lines linecount.
                   Endmodule.
    We now have all the values to construct a scroll module.
    MODULE SCROLL INPUT.
    CASE SAVE_OK_CODE.
    WHEN 'P--'.
       T1-TOP_LINE = 1.
    WHEN 'P-'.
       T1-TOP_LINE = T1-TOP_LINE - LOOPLINES.
         IF T1-TOP_LINE < 1.
            T1-TOP_LINE = 1.
         ENDIF.
    WHEN 'P+'.
       T1-TOP_LINE = T1-TOP_LINE + LOOPLINES.
         IF T1-TOP_LINE > LINECOUNT.
            T1-TOP_LINE = LINECOUNT - LOOPLINES + 1.
         ENDIF.
    WHEN 'P++'.
       T1-TOP_LINE = LINECOUNT - LOOPLINES + 1.
    ENDCASE.
    ENDMODULE.                 " SCROLL  INPUT
        WHEN 'P--'.
          CLEAR SY-UCOMM.
          CTR1-TOP_LINE = 1.
        WHEN 'P-'.
          CLEAR SY-UCOMM.
          CTR1-TOP_LINE = CTR1-TOP_LINE - LINECOUNT1.
          IF CTR1-TOP_LINE < 1.
            CTR1-TOP_LINE = 1.
          ENDIF.
        WHEN 'P+'.
          DESCRIBE TABLE ITAB1 LINES N1.
          CTR1-TOP_LINE = CTR1-TOP_LINE + LINECOUNT1.
          IF CTR1-TOP_LINE > N1.
            CTR1-TOP_LINE = N1.
          ENDIF.
          CLEAR SY-UCOMM.
        WHEN 'P++'.
          DESCRIBE TABLE ITAB1 LINES N1.
          CLEAR SY-UCOMM.
          CTR1-TOP_LINE = N1.
    Cheers
    Sunny
    Rewrd points, if helpful

  • Table control scroll bar issue

    how to set the scroll bar for table control for the transaction code va42 for billing plan tab.
    i have added few custom fileds for the table control, when i m re-arranging the columns for the table control, the scroll bar is fixed for one field( as standard) and the scroll bar starts from that place. how to fix the scroll bar or control the scroll bar and sets it position for the desired column.

    HI,
    Table control ahs a property called FIXED_COLS. You ave to pass the column number to this property.

  • Visual Composer table horizontal scroll bar

    Hi Experts,
    is it possible to have horizontal scroll bar in visual composer iview?
    is it possible to lock initial n columns from scroll in VC iview?
    if possible the pls tell how?
    Thanks in advance
    Anupam

    Hi Anupam..
    The below info may helps you .......
    Visual Composer produces applications in a declarative form, thereby enabling completely code-free execution mode for multiple runtime environments. It provides full application lifecycle support by maintaining the connection between an application and its model throughout its lifecycle. Visual Composer is designed with an open architecture, which enables developers to extend its design-time environment and modeling language, as well as to integrate external data services.
    As a result, Visual Composer modelers increase productivity by reducing their development effort time from weeks and months to days. Domain experts gain the means to express their requirements directly rather than conveying them to developers. This narrows the gap between application definition and implementation.
    Starting with a blank canvas, the Visual Composer user draws the application in Visual Composer Storyboard (workspace), without writing a single line of code. Since no traditional programming skills are needed, business process experts can prototype, design and produce entire applications.
    A typical workflow for creating, deploying and running an application using Visual Composer is:
    Create a model
    Discover data services and add them to the model
    Select necessary UI elements and add them to the model
    Connect model elements to define the model logic and data flow
    Edit the layout
    Arranging the UI elements and the controls of the application on forms and tables.
    Deploy the model
    This step includes compilation, validation and deployment to a selected environment.
    Run the application
    The application can run using different runtime environment (such as Adobe Flex and HTML)
    Modeling Business Intelligence Data with Visual Composer - Part I
    Modeling Business Intelligence Data with Visual Composer - Part II
    http://help.sap.com/saphelp_nw04/helpdata/en/fd/4a7e40417c6d1de10000000a1550b0/frameset.htm
    http://help.sap.com/download/netweaver/nw04/visualcomposer/VC_60_SolManGuide.pdf
    Creating Model:
    http://help.sap.com/saphelp_nw04/helpdata/en/fd/4a7e40417c6d1de10000000a1550b0/frameset.htm
    Creating Portal Content:
    http://help.sap.com/saphelp_nw04/helpdata/en/fd/4a7e40417c6d1de10000000a1550b0/frameset.htm
    Customizing VC toolbar:
    http://help.sap.com/saphelp_nw04/helpdata/en/fd/4a7e40417c6d1de10000000a1550b0/frameset.htm
    Regards
    Sudheer

  • ADF RC Table Vertical Scroll Bar

    Hello All ,
    I have jsp page with <f:view locale="ar"> that mean the page direction will be from right to left .
    in this page there is ADF RC Table at run time in Internet Explorer the vertical Scroll Bar is display but
    when run in mozilla Firfox the vertical Scroll Bar by the ADF RC Table is Not visible
    note the page is from right to left <f:view locale="ar">
    is there any help please

    Hi,
    seems to be a problem with Firefox 3. With this version I can reproduce the missing vertical scrollbar too (but not with IE7 and FF2).
    (also with the suggested settings of Shay in trinidad file)
    According to the Jdev 11g release notes FF3 is supported but not certified (not only right-to-left feature)
    I suggest to fill a bug for this issue at oracle support.
    regards
    Peter

  • Table control - scroll bar

    Hello,
    There is table control in my program and screen.
    This object with created table control wizard.
    This object on scroll bar(ver.-hor.)
    I want to not see scroll bar.(visible = false)
    Pleace help me.
    Thanks.

    Hello Melih
    I do not think that we can effect the scroll bars. If the size of the screen/dynpro is sufficient to display the entire table control then there should be no scroll bar. If the screen is smaller than the table control then the GUI automatically displays the scroll bars (which makes perfect sense).
    Regards
      Uwe

  • JScrollPane, simple code, why doesnt it work?

    i am just learning how to add scroll bars,
    i do not understand why my code below doesnt work,
    can u tell me how to fix it & what i have done wrong?
    appreciated...
    // ex 5_17 did not have a large enough display area...
    // ex 5_17a changes the way it is displayed, i have added a scroll bar
    import javax.swing.JOptionPane;
    import javax.swing.JTextArea;
    import javax.swing.JScrollPane;
    public class Ex5_17a{
         public static void main( String args [] ){
              int terms = 1;
              double pie = 4;
              double ans = 0;
              double p = 3;
              JTextArea outputArea = new JTextArea( "15,15");
              JScrollPane scroller = new JScrollPane( outputArea );
              String result = "";
         while (terms < 40){
                   terms++;
               if ((terms % 2)==0){
                  pie = pie - (double)(4/p);
                  ans = pie;}
               else{
                  pie = pie + (double)(4/p);
               ans = pie;
               p = p+2;
               result += + pie + "   " + terms + "   " + ans + " \n";
            //outputArea.append(result);
         }//end of while terms<30
         outputArea.setText( result );
            JOptionPane.showMessageDialog(null,
               scroller,"Pie display",JOptionPane.PLAIN_MESSAGE);
         System.exit(0);
         }//end of main
    }//end of class
    [/code                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    What does "15, 15" mean?
    If you want to initialize ta with number of rows and cols:
    JTextArea outputArea = new JTextArea(15, 15);
    To make sure you have scrolling that you want one of possibilities of using constants:
    scroll = new JScrollPane(ta,
    ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED,
    ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);

  • Horizontal scroll bar in FF4.0 not working

    The horizontal scroll bar takes the full width of the window and doesn't allow to scroll left or right.
    Occurs only in FF4, page displays fine in FF3.x, IE, Chrome.
    try http://bajkionline.com/krecik.html

    I have removed FF4 and reinstalled FF3.6.16 and the search bar works fine - like it always did.
    Shame I cannot use FF4.
    Would you please let me know when a solution to this problem can be found? BTW I do have Copernic Desktop Search installed. When I installed FF4 I did get a message that the Copernic add-in was not compatible. Could this be a problem?

  • Why doesnt it work

    ive tried everything why wont it work, it just print back in the order i put it in. I'm trying to sort alphabetically.
    public class Sortstringskinda
        public static void sort(String names[])             
            String temp;                                   
            for(int i = 0; i < names.length - 1; i++)       
                for(int ii = 0; ii > names.length - 1; ii++)
                    if(names[ii].compareToIgnoreCase(names[ii+1])<0)              
                        temp = names[ii];                   
                        names[ii] = names[ii+1];             
                        names[ii+1] = temp;                 
        public static void main(String[] args)
             //declares an array to be sorted
             String names[] = {" Chen"," Lin"," Huang"," Zhu"," Zhang"," Wu","Wang"," Cai"," Sato"," Suzuki"," Takahashi"};
            // for(int i = 0; i < names.length; i++)     
            //     System.out.println(names);
    sort(names);
    System.out.println("\nAfter sort():\n");
    for(int i = 0; i < names.length; i++)
    System.out.println(names[i]);

    public class Sortstringskinda
        public static void sort(String names[])             
            String temp;
            for(int i = 0; i < names.length; i++ )       
                for(int ii = 0 ; ii < names.length-1; ii++)
                    if(names.compareToIgnoreCase(names[ii]) < 0) /*choose order*/
              temp = names[ii];
    names[ii] = names[i];
    names[i] = temp;
    public static void main(String[] args)
    //declares an array to be sorted
    String names[] = {"Chen","Lin","Huang","Zhu","Zhang","Wu","Wang","Cai","Sato","Suzuki","Takahashi"};
    // for(int i = 0; i < names.length; i++)
    //System.out.println(g.compareToIgnoreCase(h));
    sort(names);
    System.out.println("\nAfter sort():\n");
    for(int i = 0; i < names.length; i++)
    System.out.println(names[i]);

  • How to install windows on a mac... why doesnt it work?!!!!

    Ok hey ya,
    I got an amazing problem... its just making me confused and at ** at the same time,... sry for bad language...
    I actually never tried this.. to let windows run on a mac! Me myself i got a macbook pro 15 inch... ive done mostly evertything which is needed to get the laptop ready to reboot on Windows. Only one thing just doenst want to work for me! When you download the Boot Camp Assitent to make another partition for Windows System, it tells me to update my firmware! So, i went downloading the whole thing and started the Boot Campt Assitent again. But then it told me *update the newest Firmware on you computer*.
    So i left the program again, looking for another update. I downloadt another one. Tried again, missed again. Everytime i want to open the Boot camp assitent. It tells me the same thing every single time *Update.... befor you can use this program!* why? it just did that and i donnot understand why its not working for me?!!!
    might you guys help me out plz?
    Regards
    Hush
    MacBook Pro 2.0 Ghz   Mac OS X (10.4.7)   Just amazing

    Hi Hush,
    Did you download and install THIS firmware update?
    http://www.apple.com/support/downloads/macbookproearly2006firmwareupdate101.html
    This is the firmware needed to install Windows XP.

  • BDC Recording For J1IG with Table Control Scroll bar

    Dear Friends,
    I am doing BDC program for J1IG Transaction after done recording.
    As you knows that, In J1IG transaction max. 11 materials are shows in table control at a time and if more records are there, then we have to scroll down manually so after that, we can see the records.
    Now my BDC program runs upto 11 materials but when more than 11 materials, selection is coming on first material only and cursor not showing 12th material.
    So i think page down is not working for that issue.
    I have seen lots of search forum for that but not getting the proper answer.
    Please reply.
    Regards,
    Shivam.

    Dear Dinu,
    For better understanding please see the code.
    So you suggest what should i have to do?.
    LOOP AT jtab INTO wb.
         LOOP AT itab INTO wa WHERE mblnr EQ wb-mblnr.
           CLEAR : flag.
           AT NEW mblnr.
             flag = 'X'.
             CLEAR : cnt, var1, var2.
           ENDAT.
           cnt = cnt + 1.
           IF flag EQ 'X'.
             PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0100'.
             PERFORM bdc_field       USING 'BDC_OKCODE'
                                       '=ECAP'.
             PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0200'.
             PERFORM bdc_field       USING 'BDC_CURSOR'
                                       'T_HEADER-EXDAT'.
             PERFORM bdc_field       USING 'BDC_OKCODE'
                                       '/00'.
             PERFORM bdc_field       USING 'J_1IEXCHDR-EXGRP'
                                       wa-exgrp.
             PERFORM bdc_field       USING 'T_HEADER-MBLNR'
                                       wa-mblnr.
             PERFORM bdc_field       USING 'T_HEADER-MJAHR'
                                       wa-mjahr.
             PERFORM bdc_field       USING 'T_HEADER-EXNUM'
                                       wa-exnum.
             PERFORM bdc_field       USING 'T_HEADER-EXDAT'
                                       wa-exdat.
             PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0200'.
             PERFORM bdc_field       USING 'BDC_CURSOR'
                                       'J_1IEXCHDR-EXGRP'.
             PERFORM bdc_field       USING 'BDC_OKCODE'
                                       '=DETL'.
           ENDIF.
           CONCATENATE 'T_ITEM-ZEILE(' cnt ')'  INTO var1.
           CONCATENATE 'T_ITEM-SELECTION(' cnt ')'  INTO var2.
           PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0300'.
           PERFORM bdc_field       USING 'BDC_CURSOR'
                                     var1.           "'T_ITEM-ZEILE(01)'.
           PERFORM bdc_field       USING 'BDC_OKCODE'
                                     '=MORE'.
           PERFORM bdc_field       USING var2 "'T_ITEM-SELECTION(01)'
                                     'X'. "record-selection_01_019.
           PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0400'.
           PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'T_LOCAL_EXC-EXADDRATE1(01)'.
           PERFORM bdc_field       USING 'BDC_OKCODE'
                                     '/00'.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-MENGE(01)'
                                     wa-menge.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-EXBAS(01)'
                                     wa-exbas.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-EXBED(01)'
                                     wa-exbed.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-BEDRATE(01)'
                                     wa-bedrate.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-EXAED(01)'
                                     wa-exaed.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-AEDRATE(01)'
                                     wa-aedrate.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-ECS(01)'
                                     wa-ecs.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-ECSRATE(01)'
                                     wa-ecsrate.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-EXADDTAX1(01)'
                                     wa-exaddtax1.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-EXADDRATE1(01)'
                                     wa-exaddrate1.
           PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0400'.
           PERFORM bdc_field       USING 'BDC_CURSOR'
                                     'T_LOCAL_EXC-RG23ASER(01)'.
           PERFORM bdc_field       USING 'BDC_OKCODE'
                                     '=BACK'.
         ENDLOOP.
         PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0300'.
         PERFORM bdc_field       USING 'BDC_CURSOR'
                                   'T_ITEM-DOCNO(01)'.
         PERFORM bdc_field       USING 'BDC_OKCODE'
                                   '=SAVE'.
         CLEAR opt.
         opt-dismode = 'A'.
         opt-updmode = 'S'.
    *    opt-defsize = '12'.
    *    CLEAR: it_messages[], it_messages.
         CALL TRANSACTION 'J1IG' USING it_bdcdata OPTIONS FROM opt
                                       MESSAGES INTO it_messages.
         REFRESH it_bdcdata.
       ENDLOOP.
       CHECK it_messages[] IS NOT INITIAL.
       LOOP AT it_messages.
         PERFORM fill_messages USING it_messages-msgtyp
                                     it_messages-msgid
                                     it_messages-msgnr
                                     it_messages-msgv1
                                     it_messages-msgv2
                                     it_messages-msgv3
                                     it_messages-msgv4.
       ENDLOOP.
       PERFORM display_messages TABLES tmsg.

Maybe you are looking for

  • Dual monitor issues

    Ok so (again) I'm trying to set up dual monitors. My laptop has no backlight so I use a normal CRT as output Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen1" 0 0 Screen 1 "Screen0" LeftOf "Screen1" InputDevice "Keyboard0" "Core

  • Error - Settlement for Production order Co88

    Hello, Before Dec 2009 the FG material xxxxx has been goods movement post without maintained split valuation. Then Dec2009 the material xxxxx has been extended to split valuated. While process of production order settlement against said material thro

  • How do I get the Grid lines to show on the printed sheet in numbers?

    When I print out a page from Numbers the Grid lines do not appear.  What do I need to do to correct this?

  • TM is really not working after 10.5.4

    My Time Machine stopped working after updating to 10.5.4, I use a share on a 3rd party NAS (Dlink dns-323) as my TM drive. I have tried all the usual things, re-index spotlight etc. The problem appears to be with spotlight indexes on the mounted back

  • How do you delete a Parked Reservation Document?

    We have a parked document that used FMX1 t-code to create it.  How do we delete that Parked document? Edited by: Daniel Goodhart1 on Aug 27, 2010 9:47 AM