Hide bottom scroll bar

<p>Is it possible with WEViewer to also hide the bottom page navigation toolbar? We&#39;re using iFrames and very often we get two toolbars at the bottom of a page.</p><p> Thanks</p>

1)My create iframe formula is:
WhilePrintingRecords;
//Add other parameters stringVar startdate := ToText({?StartDate});
stringVar enddate := ToText({?EndDate});
stringVar projid := {?ProjID};
stringVar status := {?Status};
stringVar type := {?Type};
stringVar path := WETargetPath("rpt", "name", "my_Detail",
   "lsSStartDate=" + startdate + "&lsSEndDate=" + enddate + "&lsSProjID=" +
       projid + "&lsSStatus=" + status + "&lsSType=" + type);
WEIFrame("detail", path, 1700, 1600, "True");
I'm not using WEViewer for this one. So the toolbars would the default display
2)XiR2, .Net, IE6.0.2900.2180
Hope this enough. Thanks

Similar Messages

  • How can I hide the scroll bar in TextArea?

    How can I hide the scroll bar in TextArea?

    Hi. To remove the horizontal scrollbar you can do this:
    textArea.setWrapText(true);
    To remove the vertical scrollbar you can do this:
    ScrollBar scrollBarv = (ScrollBar)ta.lookup(".scroll-bar:vertical");
    scrollBarv.setDisable(true);  and set the opacity to 0 in the css file:
    //css file
    .text-area .scroll-bar:vertical:disabled {
        -fx-opacity: 0;
    }Here is an example:
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ContextMenu;
    import javafx.scene.control.MenuItem;
    import javafx.scene.control.ScrollBar;
    import javafx.scene.control.TextArea;
    import javafx.scene.input.ContextMenuEvent;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    public class TextAreaSample extends Application {
        @Override
        public void start(Stage primaryStage) {
        final TextArea textArea = new TextArea();
            textArea.setWrapText(true);
            StackPane root = new StackPane();
            root.getChildren().add(textArea);
            Scene scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            scene.getStylesheets().add(getClass().getResource("style.css").toExternalForm());
            ScrollBar scrollBarv = (ScrollBar)textArea.lookup(".scroll-bar:vertical");
            scrollBarv.setDisable(true);
        public static void main(String[] args) {
            launch(args);
    }

  • How do I temporarily hide the scroll bars ?

    How do I temporarily hide the scroll bars ?

    I assume that your post in [[/questions/906990#answer-291125]] ended up in the wrong thread and should have appeared here.
    The only thing that changes if you run the code in the Scratchpad is the disappearance and reappearance of the scroll bar in the current tab. You do not see anything in the Scratchpad. So you need to switch back to the browser window.
    You can test it with this code, that should make both scroll bars appear:
    <pre><nowiki>void(document.body.style.setProperty("overflow","scroll",""));
    </nowiki></pre>
    [[/questions/906990#answer-291125]]:
    <blockquote>In Scratchpad I ran both:
    <pre><nowiki>void(document.body.style.setProperty("overflow-x","hidden",""));
    and
    void(document.body.style.setProperty("overflow-x","hidden",""));
    In the 2nd one I got:
    17:48:57.826 |x unexpected end of XML source
    @ Scratchpad:1'''
    For the 1st one I got no activity, only a blinking cursor.
    any other ideas ?
    Good luck and merry Christmas, Bill
    .</blockquote>

  • Cannot see entire page without using the bottom scroll bar.

    Cannot see the entire page without using the bottom scroll bar. Unfortunately some websites do not have the scroll bar and I am unable to complete my transaction because the area I need to click is on the right of the screen and that does not show on my page. If I change the view, the font is to small and it is blurry making in illegible.

    Weird. Be sure zoom is to default value (press Ctrl+0 -zero- in FF). In addition, restart FF in safe mode, maybe an add-on is the culprit.

  • Disable / hide ALV scroll bar (Navigation Pane)

    Hello,
    is there a way to disable or hide the scroll bar in an ALV table? in other words I wanna display all
    the data in an ALV table without having to scroll down.
    Thanks,
    Abdul.

    Hi, you can use the table configuration to control this. set_visible_row_count to -1.
    data:
    l_salv_wd_table type ref to iwci_salv_wd_table,
    l_table type ref to cl_salv_wd_config_table.
    l_salv_wd_table = wd_this->wd_cpifc_usage_alv( ).
      l_table = l_salv_wd_table->get_model( ).
      l_table->if_salv_wd_table_settings~set_visible_row_count( -1 ).

  • Hide TextArea scroll bar

    Has anyone found a way to hide, edit, alpha the scroll bar
    with the TextArea component (flash CS3 - AS2)?
    I can hide the border, alpha the background, but no way to
    hide the scrollbar... arggg.
    my example... when you click one of the buttons (bottom) you
    will notice the scroll bar (right) flickers then disappears and the
    text also shifts. I hid the border and alpha the background but
    need to get rid of the scrollbar.
    http://dev.webadmin.ufl.edu/~akirby/dynamicFlash2/index2.html
    thanx in advance

    "If you can tell me what you are trying to accomplish..."
    - Folks want flash on their home page but don't know Flash or
    have the app.
    - I provide this "system" to them.
    - They upload the files to their server
    - They include the satay method of embedding the flash into
    their markup (existing web page based off of official templates
    provided by my office)
    - All they need to maintain are the text files, images, and
    css (for styling text).
    - No need to open/use the Flash application to maintain this
    system.
    It works perfectly other then the scroll bar flickering and
    text shifting bug(s) that occurs within the TextArea Component.
    That's the only issue that is causing this project to be held up.
    "They are always overly coded..."
    Myself and two other Flashers have developed this system
    (timeline) as slim and as simple as we possibly could. I'm sure
    there's a better way to produce this system by using timeline
    actionscripting... but our skills are limited.
    "hard to trace their logic."
    Logic is... not to have to open/use the Flash app to maintain
    this system. Only maintain external files.

  • How can I hide horizontal scroll bar?

    Some websites use CSS code (overflow-x: hidden or overflow-y:hidden), that shows the horizontal scroll bar while the frame on the website is centered and only 800 pixels wide, but I really don't need my horizontal scroll bar to show up. So how can I hide it?
    Thanks!

    If you use <b>overflow: hidden</b> then you shouldn't see a scroll bar (overflow:scroll does that).<br />
    If that doesn't work then try to add the !important; or use the code in Stylish or to userContent.css in the chrome folder.
    *http://kb.mozillazine.org/userContent.css
    *https://developer.mozilla.org/en/CSS/@-moz-document

  • My page has moved to the right of the screen so I do not have a full centre page. How do I move the page back to the centre of the screen. There is no bottom scroll bar for me to move the page to the left of the screen. Hope this makes sense

    The picture on my screen has moved over to the right hand side and I want it to be in the centre. How do I move it back as I do not have a scroll bar at the bottom of the page to do this and am unable to drag it back. Hope this makes sense!

    Its a toolbar thing. I got rid of my Babylon toolbar and it sorted it out!

  • How to hide scroll bar

    Hi everyone,
    when i display iviews on the page it should not show me the scroll bar.
    how to hide the scroll bar in iview.

    Hi Sonal,
    You can try this, create a JSPDynpage to display your Iviews as Iframes ( disable the scrolling mode in Iframes), in the imgsrc attribute of Iframe give the URL path of ur Iviews to be displayed.(if two iviews put it as two iframes)
    Regarding the gap between Iframes or design of the JSP page you can handle it thro Htmlb or even html tags.Upload the Par in the portal, create a new iview out of it (it will not have scrolling mode and your design can be established) Now add this Iview to a page.
    Hope it helps.
    Regards,
    Vivekanandan

  • Bottom horizontal scroll bar missing.

    My vertical scroll bar is on the right side of my screen, but the bottom horizontal scroll bar has disappeared, can't figure out where it went or how to get it back, any help out there?

    Another thought... Open an application such as Pages or MS Excel that can have an infinitely wide (or nearly so) window. It should always display a bottom scroll bar as the number of columns can exceed the width of the screen. In fact, you can easily make a spreadsheet window wider than your screen by dragging the corner of the window as far as you can to the right, then placing cursor in the blank space at the top of the document and drag the window off the edge of the screen to the left and then dragging the bottom right further to the right again. The result is a window wider than screen and it WILL have a scroll bar at the bottom. Simply reverse the process to get it back to a more manageable size again.

  • Unwanted hor-scroll bars in IE

    Hello all,
    I have designed a web page in Dreamweaver MX using frames
    (3-T,L,C) when I view it in Firefox scroll bars appear on the right
    side, which is correct, but when I view it in IE scroll bars appear
    on the right AND the bottom, even thow there is nothing to scroll
    left or right too.
    I have tried the scrolling="no", resizing the frames, etc. My
    video size is 1024x768, but the HTML file is only 800 wide, which
    should fit no problem in 1024.
    Also, I only get the hor-scroll bar when there is a right
    scroll bar. In other words, if what I have on a page is longer than
    the page, a right scroll bar appears, along with a bottom one. Very
    bizzare!!
    Any ideas how to get rid of the bottom scroll bar in IE?
    Much appreciated.

    Without checking too deeping, I believe it could be because
    your header is
    around the 800px width. So when you resize the window to
    about 800*600 you
    get a scroll in the bottom area to match the width at the
    top. Even though
    that bottom frame may not be as wide at the top, the browser
    has to take
    into account all the widths of the page elements.
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.csstemplates.com.au
    - CSS Templates | Free Templates
    http://www.perrelink.com.au
    - Web Dev
    http://www.DreamweaverResources.com
    - Dropdown Menu Templates|Tutorials
    http://www.adobe.com/devnet/dreamweaver/css.html
    "Falcore4" <[email protected]> wrote in
    message
    news:e96836$5ug$[email protected]..
    > Here is the link:
    >
    >
    http://www.websites4design.com/Saugus%20Youth%20Soccer%20New/index.htm
    >
    > Select either Board or Registration links.
    >
    > Thanks

  • Scroll bar on itunes

    the bottom scroll bar on my itunes page, the one that lets you move side to side, is not there on the screen. i tried reinstalling itunes and it is still not there. how can i fix this? thanks.

    It's not your display resolution, it's something they changed a few days ago. Send feedback to apple:
    itunes menu > help > provide itunes feedback
    Here is a thread with more users having the problem and some workarounds.
    http://discussions.apple.com/message.jspa?messageID=11233683#11233683

  • How to make the scroll bar in flex automate to focus on the new ui component added in the canvas?

    Hi all ,
    There is a canvas container where am adding charts in separate windows.
    So whenever a new chart is added the scroll bar needs to set the focus on the present chart window.
    For this i made the functionality for the canvas container to scroll whenever a new chart is added using the below code
    canvasContainer.verticalScrollPosition = canvasContainer.maxVerticalScrollPosition;
    But the calculations for the vertical position are not precise...
    Is there anything else I should do to make the scroll happen automatically as the chart windows get added in the container ??
    Any suggestions pls
    Regards,
    Ajantha

    Many many thanks to Frank,
    In the css,use the follwing style settings to hide the scroll bar
    af|carousel::spin-bar{    
    visibility: hidden;
    af|carousel::spin-h-previous-icon-style{
    visibility: hidden;
    af|carousel::spin-h-next-icon-style{
    visibility: hidden;
    af|carousel::spin-info{
    visibility: hidden;
    }

  • Scrolling bars in indesign (windows 8) are locked

    Help, I just donwloaded inDesign for windows 8 and the side and bottom scrolling bars don't work! I can only move through the page with the hand tool and it is horrible!

    Do a system restore to last Thursday....

  • Scroll Bar on Itunes disappeared!

    On some pages in Itunes, the bottom scroll bar that lets you scroll sideways disappears. I've always worked around it, but I just got a new Ipod Touch and I need to scroll to the right to be able to "Agree" to the Software Licensing Terms before I can use it. I've tried resizing the window in every way and using the scroll wheel on my mouse, but I can't get over to the button.
    Any help???

    Set your display resolution to 1024x768
    Start > Control Panel > Display > Settings tab

Maybe you are looking for

  • Insert in Tabular form does not work after the upgrade to APEX 4.0

    Hi all, Thx in advance for looking into the issue. We are running into following issue when we upgraded APEX 3.2 to APEX 4.02 1) The Tabular form insert does not work. 2) We are fatching the value of the Global variable APEX_APPLICATION.g_XXXX in a p

  • Web service consumer wizard in ECC 6.0 SP17

    Hi, I'm trying to create web service consumer using the wizard. I completed the step and click finish button at the end of the wizard. However, the process is just stop there and the main menu SAP Easy Access is displayed. No objects created. I can g

  • Link between Inbound delivery and Billing

    Hi Experts, I am new to MM. It appears to me that inbound delivery is linked to Billing or the other way round. Can I know how are the 2 processes related? Can i say a billing doc can require the inbound delivery doc as the reference document at poin

  • Database import user id & password

    i have recently installed oracle 11g, i would like to import Ms Access database i have created and the window is asking for a user id & password, i have tried sysman/my password & system/my password it is showing a login error. what user id & pssword

  • Error output for users

    Hi. The code that is being run is : message 'check loads' type 'E'. I want it to not send out the message "check loads", but to display the information in the particular table fields and also log it.  What would be the syntax to post the data for a p