The scroll bar does not show in my SaaS application.

I have a spreadsheet application and the scroll bar does not show on FF4. I need the scroll bar to navigate the app.

table is surround by panelStretchLayOut but I examine this and has no difference.
scrollBar show for data under one milion records!!
and here is my code:
<af:popup id="t1DataPopup"
binding="#{B1Bean.t1DataPopup}">
<af:dialog id="d9"
type="ok"
affirmativeTextAndAccessKey="#{viewcontrollerBundle.okLabel}"
title="#{bindings.R1.hints.label} : #{bindings.R1.inputValue}"
inlineStyle="position: absolute; left: -410px; top: -200px;">
<af:panelStretchLayout id="psl4" topHeight="30px"
inlineStyle="width:800px; height:400.0px;">
<f:facet name="bottom"/>
<f:facet name="center">
<af:table value="#{bindings.s1Graph.collectionModel}"
var="row"
rows="#{bindings.s1Graph.rangeSize}"
emptyText="#{bindings.s1Graph.viewable ? viewcontrollerBundle.noDataToDisplayMessage : viewcontrollerBundle.accessDeniedMessage}"
fetchSize="#{bindings.s1Graph.rangeSize}"
rowBandingInterval="0"
filterModel="#{bindings.s1GraphQuery.queryDescriptor}"
queryListener="#{bindings.s1GraphQuery.processQuery}"
filterVisible="true" varStatus="vs"
selectedRowKeys="#{bindings.s1Graph.collectionModel.selectedRow}"
rowSelection="single" id="t1"
partialTriggers="::s1Graph ::s1BarGraph ::s1HoriBarGraph ::s1AreaGraph"
autoHeightRows="-1">
<af:column sortProperty="T1Stmp"
filterable="true" sortable="true"
headerText="#{bindings.s1Graph.hints.T1Stmp.label}"
id="c94" align="center">
<af:outputText value="#{row.T1Stmp}"
id="ot139"/>
</af:column>
</af:table>
</f:facet>
<f:facet name="start"/>
<f:facet name="end"/>
<f:facet name="top">
<af:panelGroupLayout id="pgl20">
<af:commandButton text="#{viewcontrollerBundle.saveAsExcelCommandButtonLabel}"
icon="/Images/excel.gif"
id="cb9">
<af:exportCollectionActionListener exportedId="t1"
type="excelHTML"
title="T1Data"/>
</af:commandButton>
</af:panelGroupLayout>
</f:facet>
</af:panelStretchLayout>
</af:dialog>
</af:popup>
and fetchsize=25
Edited by: Mansoor on Jul 17, 2012 8:28 AM

Similar Messages

  • I have Windows 8. The address bar does not show on firefox. How do I fix this?

    The address bar does not show. How do I get it to appear?

    * If the menu bar is hidden then press and hold the Alt key down, that should make the Menu bar appear. Make sure that you have the Navigation Toolbar and other toolbars visible: View > Toolbars .
    * If items are missing then see if you can find them in the View > Toolbars > Customize window.
    * If you see the item in the Customize window then drag it back from the Customize window to the Navigation toolbar.
    * If you do not see that item then click the Restore Default Set button in the View > Toolbars > Customize window.
    See also [[Back and forward or other toolbar buttons are missing]] and [[Customize navigation buttons like back, home, bookmarks and reload]] See http://kb.mozillazine.org/Toolbar_customization

  • In Photoshop Element 9, when opening the Organise section, the top bar does not show File, etc.?

    Just reinstalled Photoshop Ele,ents 9 onto Windows 7.
    In the Editt part,on opening, all is well.  This clearly show the top bar where youcan call and enter from the file to work with items on your computer.
    However, on the Organise section, this to bar does not show at all, therefoere you are unable to do any work as you cannot import items from anywhere.
    How do I get this to work now.

    You should ensure your font/text size is 100% or 96 dpi in the Windows control panel or you may need to adjust the native screen resolution of your monitor. Alternatively try keyboard shortcuts to access the menus.
    File – Alt+f
    Edit – Alt+e
    Find - Alt+i
    View – Alt+v
    Window – Alt+w
    Help – Alt+h

  • Scroll Bar does not show using Mac OS X 10.10.1, Thunderbird 31.3.0

    I upgraded to Thunderbird 31.3.0, running Mac OS X 10.10.1. The scroll bars in both the inbox window and the message text window seem to have disappeared. There does not seem to be any support available on this.

    ''Matt [[#answer-671555|said]]''
    <blockquote>
    Ok so you most likely have an add-on or theme that is not compatible with the current version. Check in the add-ons manager for updates. Disable all add-ons and enable one at a time until the culprit is found.
    How does OSX 10.10.1 handle scroll bars. Perhaps appearing and disappearing is a new mac feature. Windows hiding menu bars is an infuriating OS feature, perhaps it is the mac users turn.
    </blockquote>
    Turns out, this is the case.
    If I drag two fingers over the Track Pad, the Scroll Bar does appear. If I don't let go of the Track Pad, and roll over to the Track Bar it stays up. I hate it, but now I have a work-around.
    Thank you, Matt.

  • I have forgot my security questions but the reset bar does not show

    i have forgot my security questions but the reset bar does not show

    If you aren't getting the reset link on your account then you don't have a rescue email address (which is not the same thing as an alternate email address) on your account, and you won't be able to add one until you can answer your questions - you will have to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps on this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5620

  • My iphone 4 does not show the green bar moving when charging and sometimes the lightning bar does not show up.

    my iphone4 green battery bar does not move when charging. the lightning bolt is showing, but it is not moving and it shows onlu about 1/4 way charged. I have cut it off and back on and bought a new charger.

    does anyone know the answer

  • Horizontal Scroll Bar does not show

    I have a method which creates a table with values and displays it in a dialog. However, the horizontal scroll bars do not appear, even though there is are columns that are not seen in the view. Here is my code:
         private void setTable()
              Object columns[] = headerLST.toArray(),
                        rows[][] = new Object[rowLST.size()][headerLST.size()];     
              for(int x = 0; x < rowLST.size(); x++)
                   java.util.List list1 = (java.util.List)rowLST.get(x);
                   for(int y = 0; y < list1.size(); y++)
                        rows[x][y] = (String)list1.get(y);     
              DefaultTableModel tValues = new DefaultTableModel(rows, columns);
    JTable tableA = new JTable(tValues);
         tableA.setRowHeight(27);
                   tableA.setRowSelectionAllowed(false);
                   tableA.setColumnSelectionAllowed(false);
                   tableA.setFont(new Font("Dialog", Font.BOLD, 12));
              int minColWidth = 120, maxColWidth = 200;
              for(int y = 0; y < tableA.getColumnCount(); y++)
                   TableColumn tbc = tableA.getColumnModel().getColumn(y);
                   tbc.setPreferredWidth(minColWidth);     
                   tbc.setMinWidth(minColWidth);
                   tbc.setMaxWidth(maxColWidth);
              scrollA = new JScrollPane(tableA);
              this.getContentPane().add(scrollA, BorderLayout.CENTER);
    Can someone tell me what I am missing?
    Thanks
    Augustine

    You need this
    tableA.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    otherwise it will always try and fit the table to the space available

  • After updating my iPhone 4S to iOS 7.0.6 my iPhone won't play sound. When I pull up on the screen where it shows volume bar, brightness bar, etc. The volume bar does not show up. Even muting and unmuting it didn't work. I reset my settings and nothing

    No sound plays. Muting and unmuting doesn't work. Volume bar doesn't show up. Tried resetting my settings but nothin happened. Please help

    Hello, lrc2. 
    Thank you for visiting Apple Support Communities.
    Here is an article I would recommend taking a look at.  Try all of the steps in this article and if you are still experiencing the issue, see step 9.
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/ts5180
    Cheers,
    Jason H.

  • On windows 8.1 charms bar does not show up and the touch functionality is also degraded

    upgraded my elitepad 900 to windows 8.1 . after this the charms bar does not show up and the touch functionality is also degraded while playing games. i believe i need the latest synaptics gesture suite.  Cannot find it. Please help.

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial product. You can do this HERE.
    HP ElitePad 900 G1 Tablet Support
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • THE ADDRESS BAR IS NOT SHOWING

    THE ADDRESS BAR DOES NOT SHOW WHERE IS IT
    == This happened ==
    Every time Firefox opened
    == I DOWNLOADED IT

    Be sure that the Navigation Bar is being displayed. On the Menu Bar click View > Toolbars , if there is no check mark next to Navigation Toolbar, click on Navigation Toolbar to place a check mark next to it.
    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History, Bookmarks, Tools, Help)?
    Turning the Menu Bar on and off is a new feature in version 3.6.
    ''(Linux & OSX see: [[Menu bar is missing]] )''
    <u>''Windows'' Method 1.</u> '''''Hold down''''' the key and press the following letters in this exact order: V T M
    <u>''Windows'' Method 2.</u> Press and release the key. The Menu Bar will be displayed; then choose ~~red:V~~iew > ~~red:T~~oolbars and click on ~~red:M~~enu Bar.
    The Menu Bar should now be displayed permanently, unless you turn it off again using View > Toolbars . Check mark = displayed, NO check mark = not displayed.
    See: http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    <u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u> under View > Toolbars . Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''

  • Brand new 27" iMac scroll bar does not appear

    Scroll bar does not appear in almost any window. To make it appear, one way I make it appear is to grab the lower right hand corner and move the window size a little bit. The scroll bar appears. But when I try to then grab the scroll bar, I must stay INSIDE the window as I move my cursor toward the scroll bar.
    Sometimes swiping down on the cursor to move the page down, the scroll br will appear.
    But there is a basic problem. The scroll bar does not appear without EXTRA moves of some kind to make it appear.
    By the way, the scroll bar in the window I am in RIGHT NOW is appearing without EXTRA moves.
    An Apple Tech wen through this with me on the phone and could not resolve the problem
    This is the FIRST problem I have had in TWENTY NINE YEARS that Apple Techs could not solve for me.
    Help anyone?
    Phil Russell

    Here you go.

  • I've a new account on iMac.  When composing an email the contact list does not show up on the bar.  WWhen I start keying in a name, it comes up with the address.  How do I engage the  contact list from the email?

    I've a new account on iMac.  When composing an email the contact list does not show up on the bar, which would allow me to select the persons I want to include on the distribution of the email.  When I start keying in a name in the email, it comes up with the person's address, which shows it is synced.  How do I engage the contact list from the email like I do on my old account (where a contact list icon shows up, along with the "attach" and other icons) ?

    With the New Message window open, go to the View menu and select "Customize Toolbar...".
    In the screen that opens, drag the item labelled "Address" into the Toolbar area of the New Message window, then click the "Done" button.
    That item should be then added to the Toolbar for the New Message window.
    Note that the main Mail window and the New Message window (as well as the separate message window if you open a message that way) use different toolbars - the settings/inclusions for one do not carry over to another.

  • Itunes 11.1.3.8 shows a speaker icon in front of the seclection but it is not playing. the progress bar does not move. there are speakers attached to the system and all other programs do profuce an audio output.

    itunes 11.1.3.8 shows a speaker icon in front of the seclection but it is not playing. the progress bar does not move. there are speakers attached to the system and all other programs do profuce an audio output.

    Go to the Edit -> Preferences-> Playback
    In The bottom section of the page click the drop down menu by Play Audio Using and select Windows Audio Session or something other than "Direct sound" or whatever it displays. Click Okay. This worked for me! I hope it works for you too!
    Thanks,
    John

  • When I go to websites the right scroll bar does not appear

    hen I go to websites the right scroll bar does not appear

    what is the url. Did you make the screen as wide as possible.
    A lot of web designers appear to think you have a lot of wasted unused space and are all to happy to "help you" make the most of that space.

  • The home page does not show the awesome bar or file,edit,view,history,ect.

    The home page does not show the awesome bar or the file,edit,history,bookmarks,tools or help options anymore. how can I get these feature to come back up. All it shows now is latest headline & getting started.

    * In Firefox 3.6 versions on Windows and Firefox 4 on Windows and Linux it's possible to hide the "Menu Bar" via "View > Toolbars" or via the right-click context menu of 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]]
    * http://kb.mozillazine.org/Toolbar_customization

Maybe you are looking for