Removing multiple scroll bars of desktop inner page.

Hi,
    The problem is that multiple horizontal and vertical scrollbars are appearing on the homepage of the portal. So, I need to remove the extra scroll bars which are visible on the desktop inner page area.
     I have tried setting the Isolation method as both "URL" and " Pumped-Deprecated" which was previously set to "Embedded" . Also, I tried to set the height type to "Fixed" and "Full-Page". But the scroll bars still appear.
    Please help me in solving this issue if anybody knows about it.
    Thanks in Advance !!

Hi,
   I tried changing the properties of both the desktop inner page and the iview inside the inner page, but the scroll bars are not removed.
  Could u please provide the details of which other property should be changed as I tried changing the height type and isolation method as mentioned earlier.
  Thanks..

Similar Messages

  • Removing vertical scroll bar on innerpage/content area

    Hi All,
    I am trying to remove extra vertical scroll bar on innerpage/content area. I followed below weblog
    http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/5192 ..."Those pesky scrollbars when using URL isolation"
    It works if I give fixed pixels like 1000 px for inner page height.
    obj = document.getElementById("isolatedWorkArea");
    obj.style.height = 1000 + 'px';
    But its not getting dynamic height of the content area using below code which is mentioned in the blog.
    reqsize = window.frames[obj.name].document.body.scrollHeight + 100 ;
    obj.style.height = reqsize + 'px';
    Please advice if anybody have a solution for this.
    Thanks a lot.

    Hello,
    First of all if you wand to remove the scroll bar you should use;
    obj.style.overflow="hidden";
    About dynamic height I cannot tell you if the sollution proposed on the blog is suitable for you.
    Normaly you should use only:
    reqsize = document.body.scrollHeight + 100 ;
    In order to find out the total height of your page.
    I don't understand why do you want to do all this. You will have cases when parts of the content will not be visible to the user due to these restrictions.
    BR
    Alex

  • How can we remove the scroll bars from the table?

    Hi,
    I have a dynamic table. Currently the table appears with the scroll bars. But there is a requirement that the scroll bar should not appear and the table should stretch in the entire page. How can this be achieved.
    Thanks in advance
    Nita

    Thanks Mohammad for the reply.
    Was able to remove the scroll bars by using only the styleClass as AFStretchWidth. But there is a default partition in middle of the page still? Can i remove that too by any way.

  • 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.

  • Remove the scroll bar of excel sheet in excel web access web part sharepoint 2010

    Hi All,
    i am using excel web access in sharepoint 2010. but when i insert excel file in this its showing me 2 scroll bar. one for sharepoint page which is easy to remove and second in excel file.
    so i want to remove the excel sheets scroll bar not for pages scroll bar.
    i have tried all things like adjust height width and all things but unable to remove scroll bar for
    excel file.
    Please give some soln or steps for this. Please reply ASAP.
    Thanks
    Vivek

    Hi Vivek,
    You tried almost all possible ootb way to achive your goal, but contact inside excel file and browser compatibility restrict you to adjust height and width using web part properties.
    You can try below article and include that script to fix this 
    https://www.nothingbutsharepoint.com/sites/eusp/Pages/jquery-for-everyone-dynamically-sizing-excel-web-parts.aspx
    Let us know if this helps, thanks
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • Desktop inner page lost

    Hi...
    I was modifying the default frame work.While doing that accidently i removed the desktop inner pagef from that.
    as i couldnt find out the desktop inner page again i added personlised portal page .But when i run the application and if i click on the links of the detailed navigation i am getting error say error on the page..
    is it the problem with the personlised portal page..
    is there any way to get back the dektop inner page..
    Thanks In Advance
    AD

    Hi Alex,
    There should be two default framework pages in your portal .. just search in your PCD for it:
    the default one in pcd:portal_content/com.sap.pct/every_user/general/com.sap.portal.frameworkpage and a delta link copy of it in pcd:portal_content/every_user/general/frameworkpage
    In which one did you delete the inner page? If you just did it in the default framework page then again make a new copy of the first one. If you deleted the default one then check if it is still available in the delta link object.
    Martin

  • Horizontal scroll bar for the adf page

    Hi,
    We have around 7 tables in single jsff page. Here , we have a requirement like :
    We need to show horizontal scroll bar for the entire page instead of each table. Is there any way to get this.
    As of now, we have horizontal scroll bar for each table, but our customer is not accepting this, that want the scroll bar for the entire page.
    Please suggest the approach.
    Thanks

    I have grouped all the tables in panelgrouplayout.So, what is the problem (because it is not quite clear what you need)?
    If your PanelGroupLayout is with layout="horizontal", then the tables will be rendered next to each other horizontally but there will be no horizontal scrollbar on the page.
    If your PanelGroupLayout is with layout="scroll", then the tables will be next to each other vertically and there will be a horizontal and a vertical scrollbar on the page (if necessary).
    If you need your tables to be relocated next to each other horizontally and to have a horizontal scrollbar on the page, then use a PanelGroupLayouts(horizontal) inside a PanelGroupLayout(scroll):
    <af:panelGroupLayout layout="scroll">
      <af:panelGroupLayout layout="horizontal">
        <af:table> ... </af:table>
        <af:table> ... </af:table>
        <af:table> ... </af:table>
      </af:panelGroupLayout>
    </af:panelGroupLayout>If your problem is that you still have horizontal scrollbars inside the tables, then you should set appropriate widths to the corresponding tables (e.g. to <af:table> tags) such that they are large enough to fit the sum of corresponding column widths.
    ya, I know that its not god design, but its customer requirement, so we need to do that.If you expect some table(s) to be stretched automatically according to the size of browser's window, then you should re-think your UI design because PanelGroupLayouts do not stretch their children. A possible solution is to use a combination of PanelSplitters or other layout containers that stretch their children.
    Dimitar

  • Can you remove Firefox Scroll Bar ....[Solved]

    In Firefox I am looking for a way to remove side scroll bar
    Is this possible?
    Did have a quick google but only came up with tab scroll????
    Last edited by Mr Green (2008-12-20 20:55:47)

    Mr Green wrote:it does remove scrollbar but you lose mouse wheel scrolling ;-(
    I use the following…
    /* hide vertical scrollbar */
    notificationbox {
    overflow-x: hidden;
    browser[type="content-primary"], browser[type="content-targetable"] {
    overflow-y: scroll;
    margin-right: -12px; /* 12px == width of my scrollbar */

  • My wife somehow removed the address bar/toolbar from the page - i cannot figure out how to get it back

    my wife somehow removed the address bar/toolbar from the page - i cannot figure out how to get it back

    In Firefox 3.6 and later on Windows you can hide the "Menu Bar" via "View > Toolbars" or via the right-click context menu on a toolbar.
    Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    Go to "View > Toolbars" or right-click the "Menu Bar" or press Alt+V T to select which toolbars to show or hide (click on an entry to toggle the state).
    See also [[Menu bar is missing]] and http://kb.mozillazine.org/Toolbar_customization

  • There are no scroll bars on any web pages. This happened after I upgraded my iMac to Lion OS X.

    System: iMac Intel Core 2 Duo w/ 4 GB of RAM (800MHz DDR2).
    OS: X Lion 10.7
    I have scroll bars on web pages in Safari, but none in Firefox. I noticed the problem immediately after upgrading my OS to Lion 10.7.

    Try:
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    You can also try to remove the Firefox plist file.
    Go to "Library > Preferences" and remove the plist file for Firefox (org.mozilla.firefox.plist).

  • Remove/Hide scroll bars in scroll panes.

    Hi all,
    I am pretty new to action script. I am building a photo gallery and I am loading the thumbnails from an XML file into a scroll pane dynamically. As the scroll pane fills up, it gets wider to accomodate the thumbnails. There is one row, and eventually, I want to have the user be able to mouse left or right and have the scroll pane scroll, versus clicking on the bar or the left/right arrows. However, in order to accomplish this, I need the scroll bars to disappear!
    Is there anyway to either remove or hide both the x and y scroll bars on a scroll pane? My scroll pane is called: thumbPane.
    Thanks in advance!
    -Rob

    Hello friend,
                       first select scrollpane.Then open parameters panel (if dont know go to window > properties > paramiters ) turn to OFF HorizontalScrollPolicy  and verticalScrollPoliy then left and right scroll Bar will not display.
    THANKS.

  • Scroll Bars in Desktop Output

    Am I missing something, or shouldn't there be scroll bars in the desktop output for multiscreen HTML5 in RH10?
    I have a few longer topics that don't fully display, and there is no way to scroll down on the desktop (can't use the mouse wheel, arrow keys, or scroll bars (as there aren't any)). The way I found to scroll down on the desktop output version is to highlight the text and drag down, but that isn't going to work.

    Because the overflow is different, in SharePoint (native output only) some text may be hidden. But you will have to publish to SharePoint to know for sure. It's just that I do not guarantee that this fix works on SharePoint.
    Greet,
    Willam

  • Horizontal Scroll Bar for Region or Page

    Hi,
    I have a region with 10 items in a row for data entry. If i resize the browser window or the the screen/resolution is smaller then not all items are displayed and there is no scroll bar.
    How can i enable a scroll bar to be able to view all items depending on the current width of the browser?
    I'm using Application Express 4.0.1.00.03
    Teo

    Teo,
    You can set the div's width based on the window's width in Javascript. If you are in Apex 4 the following code can do this for you
    $('#SPECIAL_DIV').width( $(window).width()/2 );$(window).width() returns a number indicating the window width.
    Here the width of an HTML element ( with an ID: SPECIAL_DIV ) is set as the half of window's width.
    If you want to resize the item as soon the window is resized(without refreshing the page) ,you can bind the code to the resize browser event
    In jQuery, that would be
    $(window).resize(function () {$('#SPECIAL_DIV').width( $(window).width()/2 ); });

  • Removing horizontal scroll bar from iframe

    how can i remove the horizontal scroll bar from an
    iframe when the contents does not need one.

    You don't get the horizontal scrollbar unless the contents
    need one.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "straight guy" <[email protected]> wrote in
    message
    news:e7qfk8$fbo$[email protected]..
    >
    how can i remove the horizontal scroll bar from an
    iframe when
    > the contents does not need one.

  • About Default Framework Desktop Inner Page refresh Problem

    In the Default Framework's Destktop Inner Page's Detail Navigation , When I click a link , It's refresh whole Desktop Innerpage page.
    Now I not require refresh whole Desktop innerpage . I'm only require it's refresh content page.
    How solve this problem?
    Thanks.

    Hi Yanjun,
    The behavior of a lot of features depends of the framework. Please check first the framework comparison document:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3050a9ef-2848-2a10-1e93-bcc432c00c84
    Also check isolation method of IViews, mainly URL isolation method (it may help you):
    http://help.sap.com/saphelp_nw70/helpdata/en/97/0be13dc2fd605ae10000000a11405a/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/b5/8d977463334342be192228d2824fe1/content.htm
    Reward points if itu2019s helpful.

Maybe you are looking for

  • Printing cut off in acrobat pro x

    In Acrobat Pro X for Windows, some documents cut off the right side by about 1". I've tried every setting change I can think of and nothing works to get the document centered again. Any thoughts?

  • Problem to generate report

    i have prob to report generate(like a VB data report).Actually wht i want is to generate a report and to have a preview of the same and print also.If possible do sent me some code related to this problem or give me idea whwre i can get it. Thanks san

  • SAP-HR data to multi-file mapping.

    Hi, I have to generate SAP-HR data into 5 text files. There are some separate fields that would be required in these files. So, what could be the mapping scenario that i can choose. I think it's feasible with IDoc & proxy both. What scenario i can ch

  • Storing data in  tablemodel to a binary  file

    hi, i have a program that uses AbstractTableModel with Jtable....I need to store data in a file when the program closes... i heard that there is a way to some how convert data in Tablemodel to a binary file and retrieve data from the binary file...ot

  • Windows 8.1 Installation error

    When trying to install windows 8.1 update I am getting an error saying the reserved drive space cant be changed. Can anyone suggest how to avoid this?