Scroll bars on tables in dreamweaver CS4

hi all, please help, have done this before but some evades me now, need to do scroll bars on a table where the content is much longer than the page intended, please assist am using adobe dreamweaver CS4, would greatly appreciate, urgent

I think you would be much better off if you posted your question in the appropriate Dreamweaver forum, which you may find here:
http://forums.adobe.com/community/dreamweaver
This forum is only for discussing the forums themselves.

Similar Messages

  • Scroll bars within tables in dreamweaver cs4

    please assist am trying to create scroll bars for content to be placed inside a table, the content i have is to long for page lenght, am using dreamweaver CS4

    omedia.co.za wrote:
    hi, osgood, thank for reply, i am novice and sorry but i still am not clear on what you mean, could you please explain in detail how to go about doing these scroll bars, greatly apprciate your time. :-/
    Hummm........ not sure how much clearer I can explain it to be honest.
    In your page where you need the scroll area to appear insert your mouse cursor.
    Then switch to code view. You should see your cursor flashing between two <td> | </td> tags, (the table cell)
    Where the cursor is flashing type in:
    <div id="scroller"></div>
    Then insert all the content that you need to scroll into the 'scroller' <div>
    <div id="scroller">Your scrolling content to be inserted here</div>
    Next copy the css below and paste it into the head section of your page directly before the closing </head> tag near the top of our page.
    <style type="text/css">
    #scroller {
    width: 300px;
    height: 200px;
    overflow: auto;
    </style>
    Change the width and height to whatever suits your needs.

  • Remove vertical scroll bar from table control

    hi,
    i had used table control in my application. i want remove vertical scroll bar from table control.
    At initial time in table control there is no vertical scroll bar. In my table control lines are dependent on internal table which i was used to fill it.
    i was used these code for to set table control lines.
    DESCRIBE TABLE IT_RISK_ZINRISEXC LINES EXC_LINE.
    TC_RISK_EX-LINES =   EXC_LINE .
    Initially there is no data in internal table so there is no vertical scroll bar. After getting value i am filling internal table. and there is scroll bar in my table control. but i does not want that.
    i was not selected RESIZING-VERTICAL OR -HORIZONTAL.

    Hi,
    From Scroll Bars in Table Control
    You can remove the scroll bar in the table control by switching off horizontal and vertical scrolling in the properties of the table control. The properties can be accessed from the screen painter by double clicking on the table control. Regarding the page up and page down functions, I believe you add those buttons in the screen layout and code for them. You can use the standard function code for the page up and page down functions.
    or
    You can get rid of the vertical scroll bars by not setting table control lines. This way the user can only see the visible lines of the table control. As for the horizontal scrollbar, just make sure that your table control doesn't contain too many fields.
    Regards,
    Raj.

  • Scroll bar in table control without wizard

    Dear All,
    I have made a module pool program for gate pass. In which i have taken a TABLE CONTROL WITHOUT WIZARD. Now my problem is , the table control does not have the SCROLL BAR  functionality. It is not showing the scroll bar also. So can any one of you can help with the code that i can use to bring that scroll bar.
    Table control is without wizard.
    Thanks & Regards
    Vijju

    Hi,
    In PBO module write the code as,
        data:  fill TYPE i.
        DESCRIBE TABLE itab LINES fill.
      flights-lines = fill.
       Flights is the table control name in screen and itab is the internal table name.
    Regards
    Haritha
    Edited by: Haritha Teegala on Jan 6, 2012 7:53 AM

  • How to activate the Vertival Scroll Bar to Table control

    Hi All,
    I Have created a Module pool table control(Wizard) with Input control,where user can enter the values in the screen.
    In my screen 15 lines are visible,once i enter all 15 rows,vertical scroll bar is active,but rest of all lines are in deactivate mode.
    My requirement is:Once i enter all the visible lines,the remaining lines should be in activ mode(In put control).
    I appreciate your response.
    Best Regards,
    Seshadri

    DATA : BEGIN OF IT_MARA OCCURS 1,
           MATNR LIKE MARA-MATNR,
           ERSDA LIKE MARA-ERSDA,
           ERNAM LIKE MARA-ERNAM,
           MTART LIKE MARA-MTART,
           MBRSH LIKE MARA-MBRSH,
           V_FLAG TYPE C,
           END OF IT_MARA.
    DATA :  WA_MARA LIKE it_MARA .
    CONTROLS TABLE TYPE TABLEVIEW USING SCREEN 100.
    MODULE POPULATE_100 INPUT.
      CASE SY-UCOMM.
        WHEN 'DISP'.
          SELECT MATNR
                 ERSDA
                 ERNAM
                 MTART
                 MBRSH FROM MARA INTO WA_MARA .
            APPEND WA_MARA TO IT_MARA.
          ENDSELECT.
          DESCRIBE TABLE IT_MARA LINES V_TEXT.
          TABLE-LINES = V_TEXT.
          CLEAR IT_MARA.
    Regards..
    Balaji  ( assign if this helps u ..)

  • Unable to set  size and scroll bar to table components in visual web jsf

    Hi Friends,
    Good day all of you,
    my requirement is to display multible tables in the same jsp page with same size.
    if some tables have more columns than other tables then that table need horizontal scroll bar...

    Hi BalusC,
    Good day,
    we didn't use any CSS sheets.is there any other way to set.

  • Scroll Bars in Table Control

    Hi,
    How do I remove the vertical and horizontal scroll bars in the table control? I would like to use the Pg Up/Down buttons instead.
    Thanks,
    Mounika.

    Mounika,
    You can add or remove the scroll bar in the table control by switching off horizontal and vertical scrolling in the properties of the table control. The properties can be accessed from the screen painter by double clicking on the table control. Regarding the page up and page down functions, I believe you add those buttons in the screen layout and code for them. You can use the standard function code for the page up and page down functions.
    Regarding the Page up Page down...You need to add some extra code in your program to activvate that. Check the following program for example.
    DEMO_DYNPRO_TABCONT_LOOP_AT
    or try something like this
    try something like:
    CASE sy-ucomm.
    WHEN 'P+' OR
    'P++' OR
    'P-' OR
    'P--'
    CALL FUNCTION 'SCROLLING_IN_TABLE'
    EXPORTING
    entry_act = tc-top_line
    entry_to = tc-lines
    last_page_full = 'X'
    loops = loops
    ok_code = sy-ucomm
    overlapping = 'X'
    IMPORTING
    entry_new = tc-top_line
    EXCEPTIONS
    no_entry_or_page_act = 1
    no_entry_to = 2
    no_ok_code_or_page_go = 3
    OTHERS = 4
    ENDCASE   .
    Hope this helps
    Vinodh Balakrishnan

  • Vertical scroll bar in table control with wizrads

    Hi,
      Im working on a table control with a customised table. I created a table control with wizards. But vertical scroll bar is not working. How can i invoke vertical scroll bar and can any one provide the code for the all the operations on a table control like save,find,find next,change....Thanks in advance.
    Avinash

    Hi Avinash
    move the records number of your internal table into field LINES of tablecontrol. So you should change the code generated by wizard in PBO, for example create a new module:
    PROCESS PBO
    MODULE SET_DATA_TO_T_CTRL.
    LOOP..
    ENDLOOP.
    MODULE SET_DATA_TO_T_CTRL.
       DESCRIBE TABLE ITAB LINE SY-TABIX.
       <TABLECONTROL>-LINES = SY-TABIX.
    ENDMODULE.
    Max

  • Scroll Bar in Table

    h3. {color:#800000}*Hiii all,*{color}
    h3. {color:#800000}*i notice that if i have a table with some rows, more than the height a scroll bar showed up, but if you use next button the scroll remain in the top but the selected row is next, until you go more than the height and the scroll remain at the top??*{color}
    h3. {color:#800000}*how can this be fixed ????? any help in this ??*{color}
    h3. {color:#800000}*Thanks every one* {color}:8}

    In this case you should wait for net next release.
    We had this discussion here before Re: how to get a pagination dropdown inside an ADF Faces Rich Client Table and there are more discussion I'm sure.
    I remember that there is an ER filed which should make it the developers choice how to work with tables.
    Timo
    Edited by: Timo Hahn on 17.09.2008 11:41

  • Urgent!!!!Add a Horizontal Scroll Bar for Table Control

    Hi Experts,
    I want to have a Horizontal Scroll Bar on my Table control.
    I tried with few properties for the Table UI Element but not able to solve it.
    If any one who had already done this please help me out.
    Thanks in advance..
    Regards, Kishore K

    HI Koen,
    Thanks for early Reply.
    When I use this I get
    Page Down ( ->!!, Arrown with lines pointing Down)
    Page UP
    Page Top    ( ->, Arrown with lines pointing Top)
    Page Down ( ->, Arrown with lines pointing Down)
    But I need only Page top and Page down for this Table UI .
    I think my question is clear enough.
    Please let me know this also.
    Thanks & Regards,
    Kishore K

  • Scroll bar in Table of Contents on iPad

    The Table of Contents in my project is pretty long. However, when played on an iPad there is no scroll bar to indicate that there are more slides than what is initially seen in the Table of Contents (although you can still scrub through the Table of Contents). Is there a way to add a scroll bar to make it more obvious?

    Hello,
    Welcome to Adobe Forums
    Do you have a MAC or Windows?
    Which version of Adobe Captivate are you using?
    Do you reproduce this issue on a blank project?
    Any possiblity to share you project on [email protected]
    Thanks,
    Vikram
    Adobe Support

  • ADF - scroll bar in table.

    Hi
    I am using jdevloper 10.1.3.3
    I have to make scrollbar in table region.not in page level.please let me know.how to do that.
    please help me

    Hi,
    You could use the following to get scroll bars around your table. It may not be ideal as the scroll bar is for the entire table, so when you scroll your headers will also scroll.
    You will need to hard code your height, and set some margin for vertical scroll bar in IE (thats why the 98% width!). But atleast its better than nothing..
    <af:table width="98%" id="xx" ...
    inlineStyle="overflow-x: hidden; overflow-y: auto;height: 450px;"
    rows="15">
    </af:table>
    HTH
    Jaimon

  • How do I move a table in Dreamweaver CS4?

    Hi,
    I am creating my home page in Dreamweaver CS4 and I made a table. I cannot figure out how to move the table up to the top of the page where I want it. Any ideas on how to move a table?
    Thanks,
    ashmic19

    Add this to your CSS code:
    body {margin:0; padding:0}
    And your table code should begin immediately after the <body> tag in your HTML.
    <body>
    <table>
    <tr>
    <td> something here</td>
    </tr>
    </table>
    </body>
    Incidentally, table-based layouts are NOT the best approach.  You might like to take this opportunity to learn how to work with CSS Layouts.  It is the modern web standard.
    From  Tables to CSS Web Design Part 1 -
    http://www.adobe.com/devnet/dreamweaver/articles/table_to_css_pt1.html
    From   Tables to CSS Web Design Part 2 -
    http://www.adobe.com/devnet/dreamweaver/articles/table_to_css_pt2.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Help in integrating scroll bar between photoshop and dreamweaver

    Hello,
    I'm a newbie to integration of other adobe products with dreamweaver. However, i was able to figure out the part where i can finally integrate my design from photoshop to dreamweaver.
    Now my problem is that in my design i have a beautiful scroll bar. I can't seem to find an answer on the web for integrating the same design of this scroll bar into dreamweaver and make it functional in dreamweaver.
    Just a bit of background on what i did is that i sliced my pages in photoshop and imported them into dreamweaver and everything is good. The only thing that's missing is making this design functional and most importantly the scroll bar.
    Really appreciate anyone's help!!!

    Hi there,
      You can try using a jQuery custom scrollbar. They're pretty easy to set up and you can find them here:
    http://www.net-kit.com/jquery-custom-scrollbar-plugins/
      Once you find a plugin that is close to your design, it's just a matter of switching out color/images/etc.
    -Devon

  • How to handle scroll bar in table control in bdc

    hi friends,
       how to handle scroll bar coding in table control in bdc
    Thanks & Regards,
    Srinadh D

    hi,
    check the sites :
    table control scrolling:
    Scrolling in table control
    Re: scrolling in table control
    Table control - Vertical scrolling problem
    table control scrolling problem

Maybe you are looking for

  • [HELP] My MSI External Hard Drive Enclosure cannot be recognized by my laptop...

    As the subject tells my MSI cannot be recognized by my laptop... At first I thought that my laptop is the one at fault but i tried inserting it on my friends computer but still doesn't work. Then I blame the USB connector but tried using it on other

  • Hooking mac mini up to emac with firewire, and using emac as the display

    Is this possible? Would it work to hook up the mac mini via firewire to the emac and use the emac disaplay to run the computer? Thanks

  • How to share objects across ears ?

    We need to define a set of classes and/or jar's that will be used across various .ear file deployments. We can make these classes visible by putting them in BEA's classpath, but that would mean restarting the server everytime there are changes to suc

  • Recent software upgrade--can't connect to iTunes store.

    I upgraded the AppleTV and now, it won't connect to the iTunes store. Ever. There is no problem with the account--I've signed in properly, it works fine on my computer, phone, iPad, no issues with account itself. There is no problem with the internet

  • WLS 5.1 memory usage

    Hi all, We have WLS 5.1 sp13 running against jdk 1.3.1_06 on Solaris 8 with 512M JVM heap. We're using the WLS supplied Oracle drivers against Oracle 8.1.7. Over time, the overal process size floats up to around 2-3GB, but we never "run out of memory