Table Scrollbar doesn't initially appear.

I have a jsf page that show an af_table. (inside panel box wich is inside two panel groups,
The table displays up to 20 records. Currently it retrieves some 23 o 24 records.
When the application is initially loaded (that table appears in the first screen), the table displays the 20 records but the scroll bar is not displayed. After navigating to another screen and returning to the table page, the scroll bar displays ok. If I reload the first page in the browser, the scroll bar also appears.
Any idea ?

The panelbox is only for esthetic purposes.
Before annexing the page code I have made some changes to isolate the table. Previously the table was inside the panel box but not now.
The problem continues reproducing but a little different.
Now, when you executes the page the scroll bar does appear and also the first 20 records (before the scroll bar didn't appear the first time). If you click the scroll bar to the botton, the records scroll up but not till last record. Still some records remain hidden in the bottom of the table. To try to view these records you have to click on the last viewable record and hit the down arrow key several times. You can detect that there are some records hidden under the botton side of the table but they never scroll up.
If you finally click on button "Nueva" and the return to this page, then everything is ok.
This is the page code:
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=UTF-8"/>
  <af:table value="#{bindings.SesionesInformativasAdfView1.collectionModel}"
            var="row" rows="#{bindings.SesionesInformativasAdfView1.rangeSize}"
            emptyText="#{bindings.SesionesInformativasAdfView1.viewable ? 'No data to display.' : 'Access Denied.'}"
            fetchSize="#{bindings.SesionesInformativasAdfView1.rangeSize}"
            rowBandingInterval="1"
            filterModel="#{bindings.SesionesInformativasAdfView1Query.queryDescriptor}"
            queryListener="#{bindings.SesionesInformativasAdfView1Query.processQuery}"
            filterVisible="true" varStatus="vs"
            selectedRowKeys="#{bindings.SesionesInformativasAdfView1.collectionModel.selectedRow}"
            selectionListener="#{bindings.SesionesInformativasAdfView1.collectionModel.makeCurrent}"
            rowSelection="single" inlineStyle="height:475px;"
            binding="#{backingBeanScope.backing_index.t1}" id="t1"
            styleClass="AFStretchWidth" columnStretching="multiple">
    <af:column headerText="Fecha Sesión" id="c3" filterable="true" width="95"
               sortProperty="FechaSesTrunc" sortable="true">
      <f:facet name="filter">
        <af:group id="g2">
          <af:inputDate value="#{vs.filterCriteria.FechaSesTrunc}" id="id1"
                        autoSubmit="true"/>
        </af:group>
      </f:facet>
      <div align="center">
        <af:outputText value="#{row.FechaSesTrunc}" id="ot4">
          <af:convertDateTime pattern="#{bindings.SesionesInformativasAdfView1.hints.FechaSesTrunc.format}"/>
        </af:outputText>
      </div>
    </af:column>
    <af:column sortProperty="TituloEsp" sortable="true" headerText="Descripción"
               id="c1" filterFeatures="caseInsensitive" width="70%"
               filterable="true">
      <af:outputText value="#{row.TituloEsp}" id="ot1"/>
    </af:column>
    <af:column sortProperty="Estado" filterable="true" sortable="true"
               headerText="Estado" id="c4" width="130">
      <f:facet name="filter">
        <af:selectOneChoice id="soc1" autoSubmit="true"
                            value="#{vs.filterCriteria.Estado}">
          <af:selectItem label="Pendiente publicar" value="Pendiente publicar"
                         id="si3"/>
          <af:selectItem label="Publicada" value="Publicada" id="si1"/>
          <af:selectItem label="Fecha pasada" value="Fecha pasada" id="si2"/>
          <af:selectItem label="" id="si4"/>
        </af:selectOneChoice>
      </f:facet>
      <div align="center">
        <af:outputText value="#{row.Estado}" id="ot3"/>
      </div>
    </af:column>
    <af:column id="c5" headerText="Acciones" align="center" width="60">
      <af:panelGroupLayout id="pgl3">
        <af:commandImageLink id="cil2"
                             icon="/imagenes/8ebdd271-fd18-4eb0-873b-5f717e4c0879.png"
                             action="editarDetalle"/>
        <af:commandImageLink disabled="#{!bindings.Delete.enabled}" id="cil1"
                             icon="/imagenes/6fd2781f-54d1-4a84-b09c-c84f006ba13c.png"
                             action="#{backingBeanScope.backing_index.borrar_registro}">
          <af:showPopupBehavior popupId="::p1" align="afterEnd" alignId="cil1"/>
        </af:commandImageLink>
      </af:panelGroupLayout>
    </af:column>
  </af:table>
  <af:group id="g3">
    <af:panelGroupLayout id="pgl5" layout="scroll">
      <af:spacer width="10" height="10" id="s2"/>
      <af:panelBox text="Tabla de gestión de Sesiones Informativas" id="pb1">
        <f:facet name="toolbar">
          <af:group id="g1">
            <af:commandImageLink text="Nueva" id="cil3"
                                 icon="http://itemsweb.esade.edu/apps/img/add.png"
                                 action="nuevaSesion"/>
          </af:group>
        </f:facet>
        <af:panelGroupLayout id="pgl1" layout="scroll"/>
      </af:panelBox>
    </af:panelGroupLayout>
    <af:spacer width="10" height="10" id="s1"/>
    <af:popup id="p1">
      <div align="center">
        <af:panelGroupLayout id="pgl6" layout="vertical">
          <af:outputText value="¿ Está seguro que desea eliminar el registro ?"
                         id="ot2"/>
          <af:spacer width="10" height="10" id="s3"/>
          <af:panelGroupLayout id="pgl7" layout="horizontal">
            <div align="center">
              <af:commandImageLink text="Si" id="cil4"
                                   action="#{backingBeanScope.backing_index.borrar_registro}"/><af:spacer width="10"
                                                                                                          height="10"
                                                                                                          id="s4"/><af:commandImageLink text="No"
                                                                                                                                        id="cil5"/>
            </div>
          </af:panelGroupLayout>
        </af:panelGroupLayout>
      </div>
    </af:popup>
  </af:group>
  <!--oracle-jdev-comment:preferred-managed-bean-name:backing_index-->
</jsp:root>

Similar Messages

  • I am using both PSE 13 and Lightroom 5.  When I use Lightroom as an external editor and save the photo, it shows up in PSE13 as an edited file but does not look any different.  Why doesn't it appear edited?

    I am using both PSE 13 and Lightroom 5.  When I use Lightroom as an external editor and save the photo, it shows up in PSE13 as an edited file but does not look any different.  Why doesn't it appear edited?

    People who have Photoshop, but don't have Lightroom, need ACR so that they can use Raw files. Without ACR they could do nothing with those (they may also like having ACR so that they can work on other kinds of image using the same kinds of adjustments and techniques, as are used with Raw files).
    People who have Lightroom, can get access to Raw files regardless whether ACR is present or not. They can use Lightroom on other kinds of image also, using the same methods. LR can pass images directly into Photoshop without passing via ACR (or else does so transparently, which amounts to substantially the same thing).
    ACR does not, strictly speaking, even need to be installed for this external editing to happen. In fact, not even PS needs to be - since a different image editor can be used instead, while still retaining the Adobe Raw conversion etc.
    Lightroom "subcontracts out" specialised external tasks, in this workflow, but is still your "main contractor": the image is otherwise located, viewed, managed, adjusted/presented and output entirely using LR.
    So IMO we can divide image processing into:
    operations that involve pixels and layers and layer masks and adjustment layers etc (of the kind done inside Photoshop)
    operations that involve parametric edits (of the kind done in ACR where you are not using a Lightroom based workflow; otherwise, done inside Lightroom)
    When PS is called in, that's because those tasks are impossible or unsuitable to do in Lightroom. But those tasks can't be done in ACR either - by definition, since LR and ACR have exactly the same image processing "feature set".
    Lightroom is irrelevant to the Bridge + ACR + PS workflow. This workflow requires both your PS and your ACR to be current enough, to support your Raw format etc.
    ACR and Bridge are irrelevant to the LR + (image editor) workflow. It is in this case, only LR which needs to be current enough to support your Raw format etc.
    RP

  • I open iWeb but the main window doesn't open/appear on screen. The little windows like the inspector and font windows appear. Can anyone help?

    I open iWeb but the main window doesn't open/appear on screen. The little windows like the inspector and font windows appear. Can anyone help?

    Try the following:
    1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete iWeb's cache file, Cache.db, that is located in your
    User/Home/Library/Caches/com.apple.iWeb folder (Snow Leopard and Earlier).
    3 - launch iWeb and try again.
    NOTE:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    OT

  • Time doesn't always appear

    The time under the received column doesn't always appear. If I click on the message, it shows but then goes away. It's very inconsistent. Repairing permissions and restarting doesn't change the behavior.

    I'm guessing you did not carefully read your owners manual, did you? Unless you are not going to be using your computer for several days at a time there is no reason to shut it down. Your manual states:
    _Putting Your MacBook Pro to Sleep_
    *If you’ll be away from your MacBook Pro for only a short time, put it to sleep. When the computer is in sleep, you can quickly wake it and bypass the startup process.*
    AND
    _Shutting Down Your MacBook Pro_
    *If you aren’t going to use your MacBook Pro for a couple of days or longer, it’s best to shut it down.*

  • How do you find a table that doesn't have a specific word in it.

    I have two questions.
    questions 1
    How do you find a table that doesn't have a specific word in it by using a query on the whole database?
    questions 2
    How would i list all of my cars names in my database not showing duplicates?
    I have tried, tried and tried some more to get both of these, but I guess i don't know how to query a specific word.
    I also don't know how to query everything in just 1 column name.
    If anyone could help with these that would be great I have been trying queries for over an hour now and no luck.
    Thanks

    798837 wrote:
    I tried the all_tab_columns, just like you did it, however that just gives me the column name I am looking for what is not in a column.
    For example I need to find all the tables where mustang is not = 'red' but using a single query i need to find all of the tables.
    As for number 2
    I am looking for something like this
    select distinct column_name
    from all_tab_columns
    where column_name ='AcertainColumn';Now I'm even more confused. In your example, is MUSTANG a column name? Or is it the value of a MODEL column in the CARS table? And how could that possibly relate to something that exists in multiple tables?
    If your data model is at all reasonable, I would expect that you would just want
    SELECT *
      FROM cars
    WHERE model = 'Mustang'
       AND color != 'Red'but I can't see how this would relate to data stored in multiple tables.
    Justin

  • I purchased the newest software update for my ipod touch 1st generation and it is saying it is it will now begin download but the status bar doesn't even appear? How can I start the download?

    I purchased the newest software update for my ipod touch 1st generation and it is saying it is it will now begin download but the status bar doesn't even appear? How can I start the download?

    Well first off you shouldn't have had to pay for a download (just an assumption from the word "purchased".
    If you are trying to install iOS 5 on your iPod touch, it won't work they arent compatible. I suggest checking what version of software you are trying to install and posting it in this forum so people can have a better understanding.

  • When you scroll to the bottom of the list of files in Finder, the left to right scrollbar doesn't let you click the last file and it covers the file for a while until it disappears. Is this a bug? How do I not make that happen?

    When you scroll to the bottom of the list of files in Finder, the left to right scrollbar doesn't let you click the last file and it covers the file for a while until it disappears. Is this a bug? How do I not make that happen?

    An odd workaround: click "Always" in System Preferences/General/Show scroll bars. The scroll bars will always show, but they won't cover your last file.
    See this other post: https://discussions.apple.com/message/20572471#20572471

  • HT201412 my phone doesn't even appear on my computer, it's stuck where the apple logo appears, I tried restoring it but it didn't work, it's still the same

    my phone doesn't even appear on my computer or itunes, it's stuck where the apple logo appears, I tried restoring it but it didn't work, it's still the same, how do I fix it???

    Sorry but jailbreaking frequently has its problems.  It voids the warranty and we can't help you in this Apple forum.

  • Hi i have ipod nano 4g i know that it has nike+ipod but i can't enable it. it doesn't  even appear on screen can U tell me what is the reason?

    hi i have ipod nano 4g i know that it has nike+ipod but i can't enable it. it doesn't  even appear on screen can U tell me what is the reason?

    That sounds like an idea.I've had trouble with Verizon a lot .I I switch ed back to a non andriod phone cause of the expense it took 3 months and at least that many hours of phone calls &store visits to straight in it out...there's been many times things are blocked and a month later its back on the bill,u call and are told they can't do anything ...not there problem, can't b fixed from there end,I asked to talk to a sup. At was told I couldn't then she said I'd b told the same thing I insisted...I was on hold for about 20 minutes I hung up tried to call back they would not answer, I called my daughter had her call they answered when she told them they tried to blow her off too, so she went down to a store and made a complaint.. I don't have a store in our town,the customer should not have Togo through all that trouble some of this is down right criminal... I'm going through more problems again....they won't Evan discuss it with me unless I pay what's owed and the amount has still got the internet fees they've never taken off.

  • I can sometimes connect to my Wi-Fi network, but sometimes the name of the network doesn't even appear when i try to find available networks. Is it possible that my software is too new for the network?

    I can sometimes connect to my Wi-Fi network, but sometimes the name of the network doesn't even appear when i try to find available networks. Is it possible that my software is too new for the network?

    It may be your router is to old. Good read:
    http://www.wi-fiplanet.com/tutorials/7-tips-to-increase-wi-fi-performance.html

  • Procedure Issue (Table/View Doesn't Exist)

    Hi,
    I am running procedure its giving error (table/view doesn't exist) but if i run plsql block then noo error. Please note there is no grants issue.
    please see.
    1) Successfull case:
    BEGIN
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA1';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA2';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LINERENTDISCOUNTB';
    END;
    2)Un-Successfull case: Table / View doesnt exist.
    CREATE OR REPLACE PROCEDURE mobi_test AS
    BEGIN
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA1';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA2';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LINERENTDISCOUNTB';
    END;
    BEGIN
    mobi_test;
    END;
    Any help.
    Regards,
    Irfan Ahmad

    The problem is that your grants for your user to be able to truncate those tables is given through a role. An anonymous block will use role based permissions so you're ok that way. But when it's a stored procedure, role based permissions don't apply.
    To solve it, grant delete/truncate permissions to that user directly.

  • I have internet optic fiber connection and I'm trying to configure it with my Airport Express but doesn't works, appears that I have IP and DNS, as I'm a computers dummy , who could help me to configuration it, please?

    I have internet optic fiber connection and I'm trying to configure it with my Airport Express but doesn't works, appears that I have IP and DNS, as I'm a computers dummy , who could help me to configuration it, please?

    You're welcome.
    Voicemail is left at your carrier's server. That will continue to work unless you report your iPhone as lost or stolen with your carrier.
    You may never find it again and you can't if the iPhone remains offline or out of service which means the iPhone is powered off or doesn't have cellular reception.

  • Scrollbar doesn't move following mouse move

    I am not sure if this is an AIR bug or flex bug -- I have a
    VBox which has a lot of contents, the scrollbar works fine; but
    when I move this VBox to a new window (i.e. changing this VBox's
    parent to a new native window), the scrollbar doesn't work
    properly. Press on the scrollbar and move the mouse doesn't move
    the scrollbar. But mouse wheel works fine.
    Any thoughts?

    Hi,
    Sounds like a bug with AIR. Please file it at
    http://www.adobe.com/go/wish

  • Click on table scrollbar

    Hi
    i've a problem
    i have an event structure with a table
    when i click into a cell a dialog box ask me some values and it works properly.
    When i've several values into table 2 scrollbars are visible and the click on the scrollbars arrows (and on bars) are treated as event and the dialog box appears again.
    How can i separate this two "clicks behaviour" ?
    thanks
    http://www.sd-studio.it - web design agency

    no...the problem isn't how to insert values etc...this works great
    the problem is understanding the reason why when i click on the scrollbar to move left or right the event structure execute the code inside the "mouse up" event.
    http://www.sd-studio.it - web design agency

  • How to fix tables created with wrong initial extents

    1.We have many tables which are created with very large intial extents. Is there a way to reduce or resize initial extent?
    2.When I export the *.dmp is about 200MG, but the tablespace is more than a gig full. Why is that?
    3.I have a table with about 300,000 rows and calculated the table size to be around 86M. Should I create the initial extent here to be around 100M?
    4.I tried to do alter table ExampleTable deallocate unused, but did not help why is that?
    OBJECT_NAME = EMP
    TOTAL_BLOCKS = 16296
    TOTAL_BYTES = 133496832
    UNUSED_BLOCKS = 4915
    UNUSED BYTES = 40263680
    LAST_USED_EXTENT_FILE_ID = 9
    LAST_USED_EXTENT_BLOCK_ID = 23250
    LAST_USED_BLOCK = 11381
    PL/SQL procedure successfully completed.
    SQL> analyze table ibs_spec_value compute statistics;
    Table analyzed.
    SQL> select empty_blocks, empty_blocks*8192 unused_bytes
    2 from dba_tables
    3 where table_name='IBS_SPEC_VALUE' and owner='SPEC';
    EMPTY_BLOCKS UNUSED_BYTES
    4915 40263680
    SQL> ALTER TABLE SPEC.IBS_SPEC_VALUE DEALLOCATE UNUSED;
    Table altered.
    SQL> select empty_blocks, empty_blocks*8192 unused_bytes
    2 from dba_tables
    3 where table_name='IBS_SPEC_VALUE' and owner='SPEC';
    EMPTY_BLOCKS UNUSED_BYTES
    4915 40263680
    Thank you,
    Avanti.

    1.We have many tables which are created with very large intial extents. Is there a way to reduce or resize initial extent?
    export/import and CTAS.
    2.When I export the *.dmp is about 200MG, but the tablespace is more than a gig full. Why is that?
    Probably it is due of inefficient on managing the objects, which are heavily taken by tables/indexes. Tables/indexes were created oversize than estimation of data size.
    3.I have a table with about 300,000 rows and calculated the table size to be around 86M. Should I create the initial extent here to be around 100M?
    Yes, it is possible. Usually split into 2-5 extents is better.
    4.I tried to do alter table ExampleTable deallocate unused, but did not help why is that?
    OBJECT_NAME = EMP
    TOTAL_BLOCKS = 16296
    TOTAL_BYTES = 133496832
    UNUSED_BLOCKS = 4915
    UNUSED BYTES = 40263680
    LAST_USED_EXTENT_FILE_ID = 9
    LAST_USED_EXTENT_BLOCK_ID = 23250
    LAST_USED_BLOCK = 11381
    PL/SQL procedure successfully completed.
    SQL> analyze table ibs_spec_value compute statistics;
    Table analyzed.
    SQL> select empty_blocks, empty_blocks*8192 unused_bytes
    2 from dba_tables
    3 where table_name='IBS_SPEC_VALUE' and owner='SPEC';
    EMPTY_BLOCKS UNUSED_BYTES
    4915 40263680
    SQL> ALTER TABLE SPEC.IBS_SPEC_VALUE DEALLOCATE UNUSED;
    Table altered.
    SQL> select empty_blocks, empty_blocks*8192 unused_bytes
    2 from dba_tables
    3 where table_name='IBS_SPEC_VALUE' and owner='SPEC';
    EMPTY_BLOCKS UNUSED_BYTES
    4915 40263680
    The next paragraph is guoted from Oracle documentation :
    "Use the deallocate_unused_clause to explicitly deallocate unused space at the end of the table, partition or subpartition, overflow data segment, LOB data segment, or LOB index and makes the space available for other segments in the tablespace. You can free only unused space above the high water mark (that is, the point beyond which database blocks have not yet been formatted to receive data)".
    Most probably on your case there is no unused block over the last used block on this table. So the deallocate function doesn't give any effect. As you described, the last used block is 11381 which is get from TOTAL_BLOCKS minus UNUSED_BLOCKS.

Maybe you are looking for

  • How to delete a job in background programatically after 10 sec

    Hi all, Can anyone tell me how to delete a job in background programatically after the transaction is trigerred in 10 sec. Yours help will be greatly appreciated Yathish

  • "No recipients are set in [Recipient List]" -- Can't print to pdf!

    Since I upgraded to 10.5.7 a few weeks ago, I can't print to pdf. It seems that the upgrade might not be compatible with the workflows. I generated a new workflow as plug in, same error message: "No recipients are set in [Recipient List]" I am at a l

  • Photo stream

    Regarding my previous question about photo stream, the answer Winston Churchill gave was that it will stream pictures that have been uploaded since it was installed. It is not doing that instead it is streaming my really old pictures, which I thought

  • Best practice - classes folders from components

    Hi all, I have a question regarding which would be the best practice for the following scenario: I have a customer, multiple components have to be developed(including java custom components), how does it make sense better: to have one classes folder

  • Asynchronous document generation in Collaboration Rooms

    Hi, I'm new in this KMC world, but not in Portal. I have a collaboration room, and I need to create a document, in a collaborative and asynchronous way. I mean the creation of a document kind of .doc, .pdf, or .ppt, but without using the .dot templat