Af:table does not render when i put inlinestyle

In JDEV TP2, If i remove inlineStyle the table works properly but then i couldn't control the height being rendered. If i put style with height of some pixels, data doesn't show up.
How do i control the height of table being rendered? Width works fine.
<af:table... inlineStyle="height:50px;">

The following code works for me. Are you working with anything else in the page?
--Ric
<?xml version='1.0' encoding='windows-1252'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=windows-1252"/>
  <f:view>
    <af:document>
      <af:messages/>
      <af:form>
        <af:panelGroupLayout>
          <af:panelHeader text="Addresses1View1">
            <af:table id="masterDetail1" inlineStyle="height:50px"
                      rows="#{bindings.Addresses1View1.rangeSize}"
                      fetchSize="#{bindings.Addresses1View1.rangeSize}"
                      first="#{bindings.Addresses1View1.rangeStart}"
                      emptyText="#{bindings.Addresses1View1.viewable ? 'No rows yet.' : 'Access Denied.'}"
                      var="row"
                      value="#{bindings.Addresses1View1.collectionModel}"
                      selectedRowKeys="#{bindings.Addresses1View1.collectionModel.selectedRow}"
                      selectionListener="#{bindings.Addresses1View1.collectionModel.makeCurrent}"
                      rowSelection="single">
              <af:column headerText="#{bindings.Addresses1View1.hints.AddressId.label}"
                         sortProperty="AddressId" sortable="false">
                <af:outputText value="#{row.AddressId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Addresses1View1.hints.AddressId.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.Address1.label}"
                         sortProperty="Address1" sortable="false">
                <af:outputText value="#{row.Address1}"/>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.Address2.label}"
                         sortProperty="Address2" sortable="false">
                <af:outputText value="#{row.Address2}"/>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.City.label}"
                         sortProperty="City" sortable="false">
                <af:outputText value="#{row.City}"/>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.PostalCode.label}"
                         sortProperty="PostalCode" sortable="false">
                <af:outputText value="#{row.PostalCode}"/>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.StateProvince.label}"
                         sortProperty="StateProvince" sortable="false">
                <af:outputText value="#{row.StateProvince}"/>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.CountryId.label}"
                         sortProperty="CountryId" sortable="false">
                <af:outputText value="#{row.CountryId}"/>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.Longitude.label}"
                         sortProperty="Longitude" sortable="false">
                <af:outputText value="#{row.Longitude}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Addresses1View1.hints.Longitude.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.Latitude.label}"
                         sortProperty="Latitude" sortable="false">
                <af:outputText value="#{row.Latitude}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Addresses1View1.hints.Latitude.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.CreatedBy.label}"
                         sortProperty="CreatedBy" sortable="false">
                <af:outputText value="#{row.CreatedBy}"/>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.CreationDate.label}"
                         sortProperty="CreationDate" sortable="false">
                <af:outputText value="#{row.CreationDate}">
                  <af:convertDateTime pattern="#{bindings.Addresses1View1.hints.CreationDate.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.LastUpdatedBy.label}"
                         sortProperty="LastUpdatedBy" sortable="false">
                <af:outputText value="#{row.LastUpdatedBy}"/>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.LastUpdateDate.label}"
                         sortProperty="LastUpdateDate" sortable="false">
                <af:outputText value="#{row.LastUpdateDate}">
                  <af:convertDateTime pattern="#{bindings.Addresses1View1.hints.LastUpdateDate.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Addresses1View1.hints.ObjectVersionId.label}"
                         sortProperty="ObjectVersionId" sortable="false">
                <af:outputText value="#{row.ObjectVersionId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Addresses1View1.hints.ObjectVersionId.format}"/>
                </af:outputText>
              </af:column>
            </af:table>
          </af:panelHeader>
          <af:panelHeader text="Persons1View2">
            <af:table partialTriggers="masterDetail1"
                      rows="#{bindings.Persons1View2.rangeSize}"
                      fetchSize="#{bindings.Persons1View2.rangeSize}"
                      first="#{bindings.Persons1View2.rangeStart}"
                      emptyText="#{bindings.Persons1View2.viewable ? 'No rows yet.' : 'Access Denied.'}"
                      var="row"
                      value="#{bindings.Persons1View2.collectionModel}"
                      selectedRowKeys="#{bindings.Persons1View2.collectionModel.selectedRow}"
                      selectionListener="#{bindings.Persons1View2.collectionModel.makeCurrent}"
                      rowSelection="single">
              <af:column headerText="#{bindings.Persons1View2.hints.PersonId.label}"
                         sortProperty="PersonId" sortable="false">
                <af:outputText value="#{row.PersonId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View2.hints.PersonId.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.PrincipalName.label}"
                         sortProperty="PrincipalName" sortable="false">
                <af:outputText value="#{row.PrincipalName}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.Title.label}"
                         sortProperty="Title" sortable="false">
                <af:outputText value="#{row.Title}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.FirstName.label}"
                         sortProperty="FirstName" sortable="false">
                <af:outputText value="#{row.FirstName}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.LastName.label}"
                         sortProperty="LastName" sortable="false">
                <af:outputText value="#{row.LastName}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.PersonTypeCode.label}"
                         sortProperty="PersonTypeCode" sortable="false">
                <af:outputText value="#{row.PersonTypeCode}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.SupplierId.label}"
                         sortProperty="SupplierId" sortable="false">
                <af:outputText value="#{row.SupplierId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View2.hints.SupplierId.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.ProvisionedFlag.label}"
                         sortProperty="ProvisionedFlag" sortable="false">
                <af:outputText value="#{row.ProvisionedFlag}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.PrimaryAddressId.label}"
                         sortProperty="PrimaryAddressId" sortable="false">
                <af:outputText value="#{row.PrimaryAddressId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View2.hints.PrimaryAddressId.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.RegisteredDate.label}"
                         sortProperty="RegisteredDate" sortable="false">
                <af:outputText value="#{row.RegisteredDate}">
                  <af:convertDateTime pattern="#{bindings.Persons1View2.hints.RegisteredDate.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.MembershipId.label}"
                         sortProperty="MembershipId" sortable="false">
                <af:outputText value="#{row.MembershipId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View2.hints.MembershipId.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.Email.label}"
                         sortProperty="Email" sortable="false">
                <af:outputText value="#{row.Email}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.ConfirmedEmail.label}"
                         sortProperty="ConfirmedEmail" sortable="false">
                <af:outputText value="#{row.ConfirmedEmail}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.PhoneNumber.label}"
                         sortProperty="PhoneNumber" sortable="false">
                <af:outputText value="#{row.PhoneNumber}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.MobilePhoneNumber.label}"
                         sortProperty="MobilePhoneNumber" sortable="false">
                <af:outputText value="#{row.MobilePhoneNumber}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.CreditLimit.label}"
                         sortProperty="CreditLimit" sortable="false">
                <af:outputText value="#{row.CreditLimit}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View2.hints.CreditLimit.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.DateOfBirth.label}"
                         sortProperty="DateOfBirth" sortable="false">
                <af:outputText value="#{row.DateOfBirth}">
                  <af:convertDateTime pattern="#{bindings.Persons1View2.hints.DateOfBirth.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.MaritalStatusCode.label}"
                         sortProperty="MaritalStatusCode" sortable="false">
                <af:outputText value="#{row.MaritalStatusCode}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.Gender.label}"
                         sortProperty="Gender" sortable="false">
                <af:outputText value="#{row.Gender}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.ChildrenUnder18.label}"
                         sortProperty="ChildrenUnder18" sortable="false">
                <af:outputText value="#{row.ChildrenUnder18}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View2.hints.ChildrenUnder18.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.ApproximateIncome.label}"
                         sortProperty="ApproximateIncome" sortable="false">
                <af:outputText value="#{row.ApproximateIncome}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View2.hints.ApproximateIncome.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.ContactMethodCode.label}"
                         sortProperty="ContactMethodCode" sortable="false">
                <af:outputText value="#{row.ContactMethodCode}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.ContactableFlag.label}"
                         sortProperty="ContactableFlag" sortable="false">
                <af:outputText value="#{row.ContactableFlag}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.ContactByAffilliatesFlag.label}"
                         sortProperty="ContactByAffilliatesFlag"
                         sortable="false">
                <af:outputText value="#{row.ContactByAffilliatesFlag}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.CreatedBy.label}"
                         sortProperty="CreatedBy" sortable="false">
                <af:outputText value="#{row.CreatedBy}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.CreationDate.label}"
                         sortProperty="CreationDate" sortable="false">
                <af:outputText value="#{row.CreationDate}">
                  <af:convertDateTime pattern="#{bindings.Persons1View2.hints.CreationDate.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.LastUpdatedBy.label}"
                         sortProperty="LastUpdatedBy" sortable="false">
                <af:outputText value="#{row.LastUpdatedBy}"/>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.LastUpdateDate.label}"
                         sortProperty="LastUpdateDate" sortable="false">
                <af:outputText value="#{row.LastUpdateDate}">
                  <af:convertDateTime pattern="#{bindings.Persons1View2.hints.LastUpdateDate.format}"/>
                </af:outputText>
              </af:column>
              <af:column headerText="#{bindings.Persons1View2.hints.ObjectVersionId.label}"
                         sortProperty="ObjectVersionId" sortable="false">
                <af:outputText value="#{row.ObjectVersionId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View2.hints.ObjectVersionId.format}"/>
                </af:outputText>
              </af:column>
            </af:table>
          </af:panelHeader>
        </af:panelGroupLayout>
      </af:form>
    </af:document>
  </f:view>
</jsp:root>

Similar Messages

  • Bell icon (symbol) does not appear when i put my phone on silent

    Bell icon (symbol) does not appear when i put my phone on silent (or vice-versa) when in standby mode. Help.

    I would try a reset
    Also look here
    https://discussions.apple.com/message/9446783#9446783

  • What can I do for the following situation: I think my insert slot for the headphones does not work; when I put in any cable that should and can go in all I hear is low frequent static sounds.

    What can I do for the following situation: I think my insert slot for the headphones does not work; when I put in any cable that should and can go in all I hear is low frequent static sounds.

    You might try talking to the Apple store manager and see if you don't get more help...you might also contact Apple.com/support and see if they can give you a contact with the Apple Italy offices.
    Sounds like you have two levels of failure, the first shop that did the repair and broke a wire, and the second that has disabled something else and isn't helping.
    Apple officially refurbished equipment is usually good quality.  Surprising this has happened but you need to press on with complaints and try for resolution.

  • 'table does not exist' when creating generic datasource

    I went to SBIW->Business Content DataSources->Transfer Business Content DataSources-chose "content delta". it said 'comparison bct <-> cust version ' then it counted thru several objects for a few minutes and finished with no warnings.
    then I selected each datasource under co-om-cca and activated those with no problems.
    problem: now when i try to create came generic datasource using co-om-cca application component i get mssg when saving 'the specified table does not exist'...so now it isn't even letting me create a datasource at all using a standard application component either.
    I have been having many problems with creating datasources and using application components and this is why I did the first paragraph because I don't know what else to try.
    Please help, thanks.

    I have answered my own question.  I wasn't entering the view/table and it was my own complete oversight.

  • Row action event on data table does not occur when rows added dynamically

    Row action event on data table does not occur (only refreshes the page) when the rows in the data table are added dynamically at run time using button click and java bean.
    please tell me a way to catch the row click event when adding rows dynamically to data table. i m using RAD 6.0 to develop Faces jsp pages.
    thanks
    amit

    i got the answer

  • Table does not exist when creating FK Constraint across schemas

    Hi all,
    This will probably boil down to a permissions issue since I'm sketchy on the various levels....
    I'm testing a conversion to Oracle from our legacy system. There are 4 schemas which I've created and each of those schema users have been granted DBA roles.
    After creating a number of tables I wrote the SQL to create the FK Constraints. Most of them went in, but the ones crossing schemas don't. Logged in as SYS, I can do a select from each table, I can even JOIN the two in the SELECT. However when I try creating the constraint it give me a: ORA-00942: table or view does not exist
    ALTER TABLE USERA.TABLEA ADD FOREIGN KEY (COLA) REFERENCES USERB.TABLEB (COLA) ON DELETE CASCADE
    Again, I have scads of commands that went in correctly so this must be a permissions type thing. I'm the only one logged into the database since it's my own test system. This is 10g BTW.
    If you have any suggestions as what to look into, please explain how to actually perform the checks since I'm still learning how to get around.
    Thanks very much!

    To bulk grant, you can use dynamic SQL; somthing like this:
    <BR><BR>
    SQL> declare
      2    l_grantor VARCHAR2(30) := 'USERA';
      3    l_grantee VARCHAR2(30) := 'USERB';
      4  begin
      5    for table_rec in (select owner,table_name from all_tables where OWNER=l_grantor) loop
      6      execute immediate 'GRANT REFERENCES ON '||table_rec.OWNER||'.'||table_rec.TABLE_NAME||' TO '||l_grantee;
      7    end loop;
      8  end;
      9  /

  • My cursor does not open many links.  If I get a message on Linkedin the "Accept" rectangle does not work when I put my cursor on it.

    M cursor changs from an arrow to the text (tall I) icon when I move it over links and "unsubscribes" and I can't respond to either Facebook or Likedin buttons.
    Often if I get a link in an e-mail message my cursor will not open the link.  The arrow changs back to the txt cursor and the link won't open.  Help!
    people send me important mesage telling me to hit a link to open something but my cursor won't open the link.???

    First check your trackpad settings to make sure all is correct.
    /Library/Preferences.  Trash the com.apple.finder.plist file. 
    Disconnect all peripherals from your computer.
    Boot from your install disc & run Repair Disk from the utility menu. To use the Install Mac OS X disc, insert the disc, and restart your computer while holding down the C key as it starts up.
    Select your language.
    Once on the desktop, select Utility in the menu bar.
    Select Disk Utility.
    Select the disk or volume in the list of disks and volumes, and then click First Aid.
    Click Repair Disk.
    Restart your computer when done.
    Repair permissions after you reach the desktop-http://support.apple.com/kb/HT2963 and restart your computer.
    Empty the trash.   

  • Lightroom 4. I have a large image (scanned) 10,000 X 14000 which does not Render when I try to print or export.   Regular sized images work fine.

    In Lightroom 4:Mac OS 10.6.8.     I have an expecially large image (scanned) which is 10,000 X 14,000.  I have edited it but when I try to print or export the image, it starts to "Rendering Page" but gets stuck and is unable to complete the task before it times out.    When I use normal sized photo images (raw), it works fine.  I suspect the problem is related to the size of the file.   Is there some way I can reduce the size of the image while in Lightlroom?   Or is there any other solution? 

    You originally posted on a thread that really wasn't related to your problem, so I branched the discussion.
    Check the Windows System Event Viewer to see the details of the crash, most importantly the name of the faulting module.
    Most crashes on Open or Save are due to OS bugs (especially on MacOS) or bugs in third party extensions to the OS open and save dialogs.

  • ADF panelGroup component's background image in CSS does not render

    Hi,
    I have an issue with the panelGroup component, where a background-image specified in the styleClass DOES NOT RENDER when deployed on the OAS. It works fine when I run the page on my local OC4J.
    I've verified that the image I use is deployed correctly on the server.
    We are using :
    JDeveloper Studio Edition: 10.1.3.3.0.4157 (Build JDEVADF_10.1.3.3.0_NT_070619.1129.4157)
    Oracle Application Server: 10.1.3.5.0 running on RHEL 5.
    I'm customizing pages of an ADF application to change the branding and skinning. The page header region used in the application uses a 'panelPageHeader' and the image I need to introduce is part of branding and must be rendered above the application menus (2 levels: 1->MenuTabs, 2-MenuBar).
    If it would help to see how my page renders locally, here's the link: http://tech-nik-alley.blogspot.com/2010/09/adf-panelgroups-background-image.html
    (The brightly colored bar above the menus is newly introduced, ABC_Lightbar.jpg).
    Using an objectImage with my light_bar image as source, directly in the facet menu2, causes the alignment of all pages to get disrupted. Hence the work-around of using the image as a background.
    A copy of my pageHeader region is below, with comments. The panelGroup component newly introduced is in the facet "menu2". I've added the CSS definitions in the page as comments as appropriate.
    Any pointers on how to debug further, work-arounds etc. are appreciated.
    TIA and regards
    Deepak.
    =====MY PAGE HEADER REGION====
    <af:regionDef var="attr">
    <af:panelPageHeader styleClass="ss0" > <!—ss0 is "padding:0px;margin-left:14%;margin-right:14%;margin-top:0px;margin-bottom:0px;display:block;background-color:transparent;" -->
    <f:facet name="branding">     
    <af:panelGroup styleClass="ss_brand"> <!--ss_brand is "display:block;margin-bottom:12px" -->
    <af:objectImage shortDesc="#{imageBean['SS_COMPANY_LOGO'].description}"
    source="#{imageBean['SS_COMPANY_LOGO'].physicalName}"/>
    </af:panelGroup>
    </f:facet>
    <f:facet name="menuGlobal" >
    <af:panelGroup layout="horizontal" styleClass="ss00" rendered="#{attr.globalMenuShown}">     <!—ss00 is "margin-right:10px;" -->
    <f:facet name="separator">
    <af:objectImage source="#{imageBean['SS_GLOBAL_SEPARATOR'].physicalName}" shortDesc=""/>
    </f:facet>
    <af:menuButtons>
    <af:goMenuItem text="#{sessionBean.authenticated?pageHeaderBean.loggedInUserInfo:messageBean.SS_GEN_GUEST}"/>
    </af:menuButtons>
    <af:menuButtons startDepth="0" var="menuGlobal" value="#{menuModel.model}">
    <f:facet name="nodeStamp">
    <af:goMenuItem text="#{menuGlobal.label}"
    destination="#{menuGlobal.fileName}"
    rendered="#{menuGlobal.type=='global' &amp;&amp; menuGlobal.rendered}"
    />
    </f:facet>
    </af:menuButtons>
    </af:panelGroup>
    </f:facet>
    <f:facet name="menu1" >
    </f:facet>
    <f:facet name="menu2" >     <!-- facet menu2 originally has a 'menuTabs' (level 1 menu) on top of a 'menuBar' (level 2 menu) -->
                        <!-- Change required: introduce a light_bar image above level 1 menu (menuTabs). The image spans the page -->
    <af:panelGroup rendered="#{skinFamily.menuLayout=='horizontal' and attr.otherMenuShown}">
         <!--Change: new panelGroup introduced, with a background image in the styleClass -->
    <af:panelGroup layout="vertical" styleClass="pageHeaderLightBar"> <!-- pageHeaderLightBar is "background-image:url(/ss/skin/ABC/images/ABC_lightbar.jpg); " -->
    <!--<af:objectImage source="/ss/skin/ABC/images/ABC_lightbar.jpg"/>-->     <!--Specifying the image directly, disrupts the all other OOTB pages-->
    <af:objectSpacer width="22px"/>
    </af:panelGroup>
    <af:panelGroup styleClass="pageHeaderMenuLevelOne"> <!-- Another place where a back-ground image is used for a panelGroup using the styleclass -->
    <af:menuTabs startDepth="0" var="menuTab" value="#{menuModel.model}">     <!-- The level 2 menu using menuTabs -->
    <f:facet name="nodeStamp">
    <af:goMenuItem text="#{menuTab.label}"
    destination="#{menuTab.fileName}"
    rendered="#{menuTab.rendered and menuTab.type!='global'}"/>
    </f:facet>
    </af:menuTabs>
    <af:menuBar startDepth="1" var="menuBar" value="#{menuModel.model}">     <!--The level 2 menu using a menuBar -->
    <f:facet name="nodeStamp">
    <af:goMenuItem text="#{menuBar.label}"
    destination="#{menuBar.fileName}"
    rendered="#{menuBar.rendered}" />
    </f:facet>
    </af:menuBar>
    </af:panelGroup>
    </af:panelGroup>
    </f:facet>
    </af:panelPageHeader>
    </af:regionDef>
    ===================================

    'background-image:url("../image/Sunset.jpg")' is a relative URL... relative to the final generated markup. It should be wrong like 99% of the times. You should rather use a styleClass and deal with the background-image with skinning as the skinning engines knows how to deal with such urls. Note that you'll most likely have to define a new resource loader and servlet mapping for the ResourceServlet. I know someone made a blog entry about that, was it Frank or Shay? Hmmm cannot remember... Maybe John as well. Anyway a Google search should yield good results for adf resource loader I think.
    Regards,
    ~ Simon

  • EXP-00011 table does not exist

    Hi guru's,
    My DB Version: 10.2.0.2.0
    OS Version: Solaris 10
    While trying to export a table from a schema i am getting error:
    exp-00011 table does not exist
    when i check the source database i found that table name as 'abc' exists there
    but when i log on to schema and try to check the info about the abc table with below mentioned query i got below error:
    SQL> select table_name from user_tables where table_name='rtx';
    no rows selected
    i also checked with table_name='RTX'
    i am getting the same error.
    Can anyone help me out

    sorry the table name is rtx
    C:\Documents and Settings\Administrator>exp userid=sysadm/rtxprod@rtxprod tables=sysadm.rtx file='E:\rtx.dmp' buffer=1000000 feedback=10000 statistics=none
    Export: Release 10.2.0.1.0 - Production on Thu May 10 14:36:34 2012
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options^C
    C:\Documents and Settings\Administrator>exp userid=sysadm/rtxprod@rtxprod tables=sysadm.rtx file='E:\rtx.dmp' buffer=1000000 feedback=10000 statistics=none
    Export: Release 10.2.0.1.0 - Production on Thu May 10 14:37:05 2012
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    server uses WE8ISO8859P1 character set (possible charset conversion)
    About to export specified tables via Conventional Path ...
    EXP-00011: SYSADM.RTX does not exist
    Export terminated successfully with warnings.

  • Why does some CSS not render when viewed from DW in a browser

    I make a copy of my site on my local machine via ftp on my
    local machine. The CSS does not render correctly for my top div tag
    with the css nav in a browser from my local. It renders everywhere
    else, even in the design view but does not render the same when I
    view it in a browser from DW. Also, I know that there isn't a
    problem with it on the remote machine bc when I go to the site,
    everything is fine and the CSS nav renders correctly in the
    browser.
    Is there a setting I am missing? What is going on? Its very
    annoying!

    What has Rome ever done for us? :)
    Cheers
    Pablo
    www.dellwebsites.com
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:eo3phg$8p$[email protected]..
    > Is your link to the stylesheet root relative or document
    relative?
    >
    > Are you previewing with temp files enabled?
    >
    > --
    > 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
    > ==================
    >
    >
    > "L3SL1E" <[email protected]> wrote in
    message
    > news:eo3out$srs$[email protected]..
    >>I make a copy of my site on my local machine via ftp
    on my local machine.
    >>The
    >> CSS does not render correctly for my top div tag
    with the css nav in a
    >> browser
    >> from my local. It renders everywhere else, even in
    the design view but
    >> does not
    >> render the same when I view it in a browser from DW.
    Also, I know that
    >> there
    >> isn't a problem with it on the remote machine bc
    when I go to the site,
    >> everything is fine and the CSS nav renders correctly
    in the browser.
    >>
    >> Is there a setting I am missing? What is going on?
    Its very annoying!
    >>
    >
    >

  • TS1367 Hallo,I have an IMAC 21.5. which does not start.When i press the power button i hear only beep with an interval of 4-5 seconds.Some times when i take off the RAMS and put them again then get a white screen and shows that i have to insert a bootable

    Hallo ,I have an IMAC 21.5. which does not start.When i press the power button i hear only beep with an interval of 4-5 seconds.Some times when i take off the RAMS and put them again then get a white screen and shows that i have to insert a bootable device.Then i bought OSX mountainlion on line and wrote it on a DVD and tried with a USB key board to start the DVD.But does not work.Please help me to get this imac work.
    Thankyou in advance  for your help.
    Terrence

    Hey terremo,
    Thanks for the question. From the information you provided, it sounds like the iMac is successfully turning on, however video is not displayed. These symptoms can usually be isolated further by the troubleshooting steps in this article:
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/HT1573
    Thanks,
    Matt M.

  • HT4972 hi. my iphone 3gs was stuck on apple logo, does not charging. when i replace the battery, it works, my promblem not is, in can't or won't read the simcard. i cant activate my phone. even i put att simcard. how can i activate it? please help me. tha

    hi. my iphone 3gs was stuck on apple logo, does not charging. when i replace the battery, it works, my promblem not is, in can't or won't read the simcard. i cant activate my phone. even i put att simcard. how can i activate it? please help me. thanks.

    Apple recommends backing up the data when you're getting the battery replaced by them. So I assume that you will likely lose the data during this process.
    Will the data on my iPhone be preserved?
    No, during the service process all data on your iPhone will be erased. Before obtaining service, it is important to back up your data using iCloud or iTunes. Apple is not responsible for the loss of information while servicing your iPhone and does not offer any data transfer service. During service, Apple may exchange your iPhone with an iPhone that is new or equivalent to new in performance and reliability.
    Following service, your iPhone may have a newer operating system (iOS) version and you will need torestore your data using the method used to back it up (iCloud or iTunes). As a result, you may also need to update your App Store applications to ensure compatibility with the newer iOS. If you experience a problem with an application purchased from the App Store, check to see if an update is available or contact the application vendor directly.
    copied from Apple - Support - Service Answer Center

  • Table does not exist error

    create table dytab(x number);
        create or replace procedure p_testdytab(p_tab in varchar2)
        is
        begin
        execute immediate ' create table dytab2 as select x from p_tab';
        end p_testdytab;
        begin
        p_testdytab('dytab');
        end;
        /why the procedure is not replacing parameter p_tab with the table name ? I get table does not exist error

    Hi,
    user650888 wrote:
    create table dytab(x number);
    create or replace procedure p_testdytab(p_tab in varchar2)
    is
    begin
    execute immediate ' create table dytab2 as select x from p_tab';
    end p_testdytab;
    begin
    p_testdytab('dytab');
    end;
    /why the procedure is not replacing parameter p_tab with the table name ? I get table does not exist errorAnything inside single-quotes is literally what is written. In this case, p_tab is inside single-quotes, so p_tab doesn't stand for some other value, such as 'dytab'; it literally means p_tab,
    If you really must use EXECUTE IMMEDIATE, then don't put the variable name inside the single-quotes.
    dynamic_txt := 'create table dytab2 as select x from ' || p_tab;
    dbms_output.put_line (dynamic_txt || ' = dynamic_txt');
    EXECUTE IMMEDIATE dynamic_txt;Whenever you write dynamic SQL, display it before executing it, at least during testing. That way, you can see exactly what is being executed, which is a huge help when it causes an error.
    As Tubby said, creating tables in PL/SQL is usually a very bad idea. Whatever you need to do, Oracle probably has a simpler, more robust way to do it. Say what your business requirements are, and someone will help you find a good way to do what you need.

  • Detail region does not refresh when selecting from a drop-down list in master region

    I am using DW CS3 and have updated to version 1.6.1 of Spry.  Using an XML dataset, I am able to create a Spry table as the master region that links to a detail region that displays a small JPG graphic.  It works fine in this format (clicking on a row displays the correct graphic).  However, my table has 80 rows and requires the user to do too much scrolling. So I changed the master region to a drop-down repeat list, but the graphic does not change when a new selection is made in the drop down list.  Listed below is the code produced when I used the insert Spry Repeat List.  I got the same results when adding a spry:setrow="dsChartNurse".  I also tried -- onclick="dsChartNurse.setCurrentRow('{ds_RowID}');" -- which again made no difference.
    When I removed children from the spry:repeat, the master region displayed as a two column list of all 80 items in a drop-down list format.
    <div spry:region="dsChartNurse">
           <select name="select" spry:repeatchildren="dsChartNurse">
             <option value="{name}">{name}</option>
           </select>
    </div>
    <div id="image" spry:detailregion="dsChartNurse">
       <img src="{dataimage}" align="center" style="margin:50px 0 0 0"width="320" height="164" />
    </div>
    Thanks so much to anyone who can help correct my code in order to have a drop-down list display information correctly in the detail region.

    Thanks for the quick reply.  I did solve the problem I was having by changing from onclick to onchange in the master region.  But, now I have another problem with, of course, IE.  I just put in online at http://www.minursemap.org/ageDistNurse.html.  When opened in IE, the drop down list displays the last entry, but the image is for the first in the list.  Thanks again for your help.

Maybe you are looking for

  • How to make some seperate lines as one paragraph in MS Word2013

    hi friends when i copy & paste a part of a book (for example a paragraph) from .pdf files into MSWord 2013, the paragraph is pasted as separate lines,so i have to manually edit that. it takes long time. i have pasted my problem in following pictures,

  • No Display, just blank screen in itunes store ver. 10.7

    Hi All, so when i log into itunes Store i get a blank screen in the middle.  the side bar shows, but the middle is blank and the little tool bar with home, music, appstore etc also not there. i am using windows 7 and upgraded to latest itunes 10.7 it

  • Failure while trying to modify application - 2

    Not sure if the second part of the messages help but here goes : ==============[System Error Tracing]============== [System  Name] : AdminServerHandler [Message Type] : ErrorMessage [Job Name]     : AdminOlapSelector : DeleteCube [DateTime]     : 11/

  • Automatic Plan Order Creation on Sales Order save

    Hi friends, We are having an requirement where Automatic Plan Order should be created on Sales Order saving. We have Material A in Plant 1000 & Plant 5000. Plant 5000 in plant where Manufacturing is carried out & Plant 1000 is service Plant. We are u

  • ISE deployment

    Hi guys. Im trying to setup two cisco ise appliances. Primary and Seconadary. Everything is fine. I import the self signed cert from the secodary to primary and life is good. But... I though if i make the secondary node PRIMARY only for MONITORING it