ADF 10.1.3 : Modifying background colour of ADF read only table ...

Hi All,
I want to modify the background color of the ADF read only table [color of cell not the text] and in order to do that, i modified the background color in the inline style of the column but the color of the column is still not changing. What else do i need to do to change the column color?
Also how can we modify the color of column header?
Regards
Lokesh

I guess you have to change the skinning of the component to archive this.
Look at the doc for the skin selectors and how the change them.
Timo

Similar Messages

  • Need to Add and Remove Columns of ADF Read Only table from Backing bean

    I have a scenario where I am trying to Populate TransientVO which is shown has a ADF Read Only Table in page.
    I have couple of Check Boxes Based on their selection I am trying to render and hide certain Columns.
    But the Issue which I am facing is only the Column Header seems to change where as the Rows and Values doesnt..
    even If I apply the expression language rendering condition on the outputText inside those columns.. ..
    So I am thinking to add and remove VO Attribute columns to the table from backing bean.
    Need some sample code snippet or a better design to achieve this. Its kind of urgent too...having an aggressive deadline :(
    Please chip in People..
    Thanks in Advance .
    TK

    Table Code..
    <af:table value="#{bindings.InventoryGridTrans.collectionModel}"
                                    var="row"
                                    rows="#{bindings.InventoryGridTrans.rangeSize}"
                                    emptyText="#{bindings.InventoryGridTrans.viewable ? 'No data to display.' : 'Access Denied.'}"
                                    fetchSize="#{bindings.InventoryGridTrans.rangeSize}"
                                    rowBandingInterval="0" id="t4"
                                    partialTriggers="::sbcSales ::sbcUsage ::cb1">
                            <af:column sortProperty="Period" sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Period.label}"
                                       id="c38">
                              <af:outputText value="#{row.Period}" id="ot33"/>
                            </af:column>
                            <af:column sortProperty="Past12SalesCount"
                                       sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Past12SalesCount.label}"
                                       id="c29"
                                       rendered="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}">
                              <af:outputText value="#{row.Past12SalesCount}"
                                             id="ot40"
                                             rendered="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}"
                                             visible="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.InventoryGridTrans.hints.Past12SalesCount.format}"/>
                              </af:outputText>
                            </af:column>
                            <af:column sortProperty="Past12UsageCount"
                                       sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Past12UsageCount.label}"
                                       id="c40"
                                       rendered="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}"
                                       visible="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}">
                              <af:outputText value="#{row.Past12UsageCount}"
                                             id="ot47"
                                             rendered="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}"
                                             visible="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.InventoryGridTrans.hints.Past12UsageCount.format}"/>
                              </af:outputText>
                            </af:column>
                            </af:column>
                    </af:table>

  • Sorting a newly-added row within an ADF Read-Only Table

    I'm having a bit of trouble with a situation where I'm adding a new row to the data set behind an ADF Read-Only Table (I'm using 10g), but the new row is popping to the top rather than sorting in according to the sort order. I know this is the default behavior, and I was looking at section 23.4.4 in the Developer's Guide (http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/web_tables_forms.htm#insertedID4 - which is actually for 11g), which advises programmatically queuing a SortEvent after the commit, and implementing a handler to execute the sort.
    The problem I'm having, though, is that my commit and the table I need to refresh are on different pages. I've tried adding a CoreTable binding (masterDetail1) for the table to the backing bean for the add page and doing this in the saveButton_action() method:
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding =
    bindings.getOperationBinding("Commit");
    Object result = operationBinding.execute();
    ArrayList<SortCriterion> masterDetail1SortCriteria = new ArrayList<SortCriterion>();
    SortCriterion discAsc = new SortCriterion("Disc", true);
    SortCriterion trkAsc = new SortCriterion("Trk", true);
    masterDetail1SortCriteria.add(discAsc);
    masterDetail1SortCriteria.add(trkAsc);
    masterDetail1.setSortCriteria(masterDetail1SortCriteria);
    ...but I get a NullPointerException as soon as I try to refer to masterDetail1. I've also tried creating a SortEvent but I'm not sure how to actually queue it or if that'll even work if I don't have a usable reference to the table.
    Any thoughts on how I can do this or on a better way to refresh the table so that the newly-added item falls into the existing sort?
    Edited by: gdmitchell on Jul 19, 2010 2:40 PM
    Edited by: gdmitchell on Jul 19, 2010 2:41 PM

    Hi,
    you cannot reference a table that is located on a different page from a managed bean of another page and expect its JSF binding to be non-null. As soon as a page is moving out of focus, its server side component tree is cleared and the managed bean (if its in request scope) dismissed
    Frank

  • ADF 10.1.3 : getting error while auto refreshing the read only table

    Hi All,
    I have implemented auto refresh on ADF read only table +[auto refresh simply requeries table rows]+ but after say about 15 -20 refreshes, i start getting the warning:
    bq. "*Feb 10, 2009 3:21:17 PM oracle.adf.controller.faces.lifecycle.FacesPageLifecycle addMessage* \\ *     WARNING: JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was oracle.jbo.Key*[ |http://forums.oracle.com/forums/]"
    and all the rows in the table disappear.
    I searched on Google and found that this error can be removed by disabling token validation in the page. But i have following queries:
    1. In my auto refresh code, i have added following lines to avoid this error but i am still getting the error, what could be the reason for this.
    bq. *" current_row_key = dciter.getCurrentRow().getKey();* \\ *     dciter.executeQuery();* \\ *     dciter.setCurrentRowWithKey(current_row_key.toStringFormat(true));"*
    2. Can disabling validation on my page lead to any issues?
    Regards
    Lokesh

    Any inputs on this ..

  • Modify background colour in Slideshow mode ?

    Hi all
    I have built a Keynote file 1920 x 640 for an (obvioulsy) ultra-widescreen presentation at 3:1 (as opposed to regular 16:9 or 4:3.
    I'm using a MacBook Pro with a desktop 1920 x 1200. So obvioulsy when I play the slideshow it has black letterboxing the content top and bottom. Can I change the colour of the black letterboxing to another colour of my choice ?  It seems not in Keynote per se, but perhaps via the system ?
    tia
    Dean

    inspector  >  document  > slide size = custom 1920 x 1200
    slide master = blank
    slide master inspector: colour fill choose a background colour
    select a rectangle object  and draw rectangle for the size of the image area needed (1920x640)
    move rectangle to back

  • Calander background colour change(particular dates only)

    Hi,
    I am trying to create a calender which will reflect a person's absence days. i have created a leave_table with start_date and end_date.
    I am creating a select list which contains all the emp numbers. when one emp is selected then on submit i should get a calendar with the absence(or leave days) darken/shaded.
    i checked the forum but couldn't find any.
    any one pls help.
    thanks
    Little Foot.

    You are more likely to get some feedback if you take some proactive steps that help others to help you:
    <li>Provide sufficient relevant information:
    - APEX version
    - DB version and edition
    - Web server architecture (EPG, OHS or APEX listener)
    - Browser(s)/version(s) used
    - Theme
    - Templates
    - Region type
    - Calendar type
    - Table structure (as <tt>create table...</tt> scripts)
    - Sample data (as <tt>insert</tt> statements)
    - Calendar query
    Wrapping any code posted in tags<tt>\...\</tt> tags to preserve formatting and special characters.
    <li>Create an example containing whatever progress you've made on apex.oracle.com, and posting developer access details to allow others to work on the issue.

  • LOV columns in read only adf:table problem

    Hello
    Adf 11, ADF BC
    I've create a table Test with a column called BranchNr, the value of the column comes from the BranchList table.
    I've created an EO and a VO for both tables.
    On the Test table attriute Branch I've create a list of values to the BranchList table which displays the BranchTable.BranchDesig based on the
    linke Test.BranchNr - BranchList.BranchNr
    Testing in the application module works fine, the BranchDeisg is displayed correctly and a new value can be selected from the list.
    However when I put the Test table as a read only table on a page the BranchNr column display the BranchNr number instead of looking up the corresponding BranchDesig value.
    If I change the column on the table to an ADF Select One Choice then the BranchNr is looked up and the BranchDesig is displayed but the column
    can be modified - on a read only table !
    How can I have a read only table that looks up and displays a value from a lov without having to create a new VO with a join query (Test-BranchList))
    Regards
    Paul

    Ok, I going to my glasses tomorrow
    - all that was needed was to change the column type to selctOneChoice
    and set the column to read only....
    Regards
    Paul

  • How to get the key values of record in ADF Read-only Form?

    Hi
    I am using ADF Business Component VO.
    I have a search page( ADF Search Form) and I am displaying the results of the search in a ADF Read-Only Table( only few columns are shown) .Then by selecting a record and clicking on the button 'View' , I am navigating to a different page(ADF Read-Only Form) to show all the columns of the table for the selected record.
    In the second page, I have one more button 'view child details'.Now when I click on this view child details button, I have to show another page(ADF Read-Only Form) which fetches the data from one of the child tables of parent record.
    My idea is to create a ViewLink between the parent and child tables.( I have more than 15 child tables for a parent table).
    Is there anyother way to achieve this functionality?
    Please respond ASAP.
    Thanks in advance.
    ~Sivaji..
    Message was edited by:
    Sivaji...the boss

    Sijav,
    ASAP?
    Anyway - yes, you can do this with a view link. When you add the child table to the application model, make sure you actually add it as a child of the parent table instance (select the parent VO first, then use the shuttle to add it). This way, the parent->child relationship should be coordinated for you automatically. You should not need to get the key values manually.
    Then, when you create the page to show the detail table, make sure you use the child table that is shown as a child of the parent table in the data control palette (expand parent table to see the child).
    Hope this helps,
    John

  • ADF: Read only user access to application role on BTFs

    Hi,
    My JDeveloper version is 11.1.1.5
    I am trying to create read only users in my adf application. But I am unable to give read only permissions to the user on bounded task flows/ .jssf page which have editable tables and forms.
    I have searched for the information, I did not find any solution.
    Could some one please help me?
    Many thanks in Advance
    --Anil
    Edited by: 977652 on Apr 5, 2013 6:50 AM

    If you are using ADF BC, you can protect fields at EO level or protect the entire EO (check the security tab). The frontend will then render fields as read-only if your user is only allowed read permissions.
    If you are not using ADF BC, you can implement a custom resource permission as described here (ignore the fact that this is for an entity, the principle remains the same) http://www.oracle.com/technetwork/developer-tools/adf/learnmore/76-insert-update-entity-protection-334421.pdf
    You must then add an el expression to each fields readOnly attribute or you can implement a phaselistener that traverses all fields enclosed within a form and make them readonly.

  • Get value from input text in read only adf table

    all,
    i added a column to an adf read-only table and inserted an input text control in the extra column. how do i loop through the table to get the value from the input field?
    paul

    Hi,
    can you be more clear on the usecase? Its a read only table that you added a input text field in a new column. What is the column based on and what is the goal of looping through ?
    Frank

  • BUG: ADF BC read-only VO with no Key attrs + af:table

    Hello all,
    I've got a bug to report - quite easily reproducable with the HR demo schema. To see it:
    1). Create a new application from the ADF BC + Faces template
    2). Create a read-only VO, use "SELECT employee_id, first_name from employees" and order by "employee_id" - take the defaults for everything - do not set any key attributes.
    3). Create an AM, add the VO to it's data model. Turn off AM pooling in the configuration.
    4). Create a JSPX page. Drag-drop the VO from the data control palette as an ADF read-only table - with selection
    5). Bind the actionlistener of the "submit" button to a backing bean method that just system.out.println's something.
    Now, run the app. Try selecting an employee from the first page (records 1-10) and clicking submit - it works. Now, scroll to the second set of records, select one and click submit - no message appears - the action listener is never called. No errors are thrown.
    Workaround: ensure the VO has employee_id selected as a key attribute.
    My code is at the bottom for reference.
    Cheers,
    John
    untitled1.jspx:
    <?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"
              xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
      <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
                  doctype-system="http://www.w3.org/TR/html4/loose.dtd"
                  doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <afh:html>
          <afh:head title="untitled1">
            <meta http-equiv="Content-Type"
                  content="text/html; charset=windows-1252"/>
          </afh:head>
          <afh:body>
            <af:messages/>
            <h:form>
              <af:table value="#{bindings.emp1.collectionModel}" var="row"
                        rows="#{bindings.emp1.rangeSize}"
                        first="#{bindings.emp1.rangeStart}"
                        emptyText="#{bindings.emp1.viewable ? 'No rows yet.' : 'Access Denied.'}"
                        selectionState="#{bindings.emp1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.emp1.collectionModel.makeCurrent}">
                <af:column sortProperty="EmployeeId" sortable="false"
                           headerText="#{bindings.emp1.labels.EmployeeId}">
                  <af:outputText value="#{row.EmployeeId}">
                    <f:convertNumber groupingUsed="false"
                                     pattern="#{bindings.emp1.formats.EmployeeId}"/>
                  </af:outputText>
                </af:column>
                <af:column sortProperty="FirstName" sortable="false"
                           headerText="#{bindings.emp1.labels.FirstName}">
                  <af:outputText value="#{row.FirstName}"/>
                </af:column>
                <f:facet name="selection">
                  <af:tableSelectOne text="Select and">
                    <af:commandButton text="Submit" actionListener="#{abc.click}"/>
                  </af:tableSelectOne>
                </f:facet>
              </af:table>
            </h:form>
          </afh:body>
        </afh:html>
      </f:view>
    </jsp:root>abc.java:
    import javax.faces.event.ActionEvent;
    public class abc
      public abc()
      public void click(ActionEvent actionEvent)
        System.out.println("click");
    }emp.xml (View Object):
    <?xml version='1.0' encoding='windows-1252' ?>
    <!DOCTYPE ViewObject SYSTEM "jbo_03_01.dtd">
    <ViewObject
       Name="emp"
       OrderBy="employee_id"
       BindingStyle="OracleName"
       CustomQuery="true"
       ComponentClass="model.empImpl"
       UseGlueCode="false" >
       <SQLQuery><![CDATA[
    select employee_id, first_name
    from employees
       ]]></SQLQuery>
       <DesignTime>
          <Attr Name="_isExpertMode" Value="true" />
          <Attr Name="_version" Value="10.1.3.39.84" />
          <Attr Name="_codeGenFlag2" Value="Access|Coll|VarAccess" />
       </DesignTime>
       <ViewAttribute
          Name="EmployeeId"
          IsUpdateable="false"
          IsPersistent="false"
          IsNotNull="true"
          Precision="6"
          Scale="0"
          Type="oracle.jbo.domain.Number"
          ColumnType="NUMBER"
          AliasName="EMPLOYEE_ID"
          Expression="EMPLOYEE_ID"
          SQLType="NUMERIC" >
          <DesignTime>
             <Attr Name="_DisplaySize" Value="22" />
          </DesignTime>
       </ViewAttribute>
       <ViewAttribute
          Name="FirstName"
          IsUpdateable="false"
          IsPersistent="false"
          Precision="20"
          Type="java.lang.String"
          ColumnType="VARCHAR2"
          AliasName="FIRST_NAME"
          Expression="FIRST_NAME"
          SQLType="VARCHAR" >
          <DesignTime>
             <Attr Name="_DisplaySize" Value="20" />
          </DesignTime>
       </ViewAttribute>
    </ViewObject>appModule.xml:
    <?xml version='1.0' encoding='windows-1252' ?>
    <!DOCTYPE AppModule SYSTEM "jbo_03_01.dtd">
    <AppModule
       Name="AppModule"
       ComponentClass="model.AppModuleImpl" >
       <DesignTime>
          <Attr Name="_isCodegen" Value="true" />
          <Attr Name="_version" Value="10.1.3.39.84" />
          <Attr Name="_deployType" Value="0" />
       </DesignTime>
       <ViewUsage
          Name="emp1"
          ViewObjectName="model.emp" >
       </ViewUsage>
    </AppModule>bc4j.xcfg:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BC4JConfig>
       <AppModuleConfigBag>
          <AppModuleConfig name="AppModuleLocal">
             <DeployPlatform>LOCAL</DeployPlatform>
             <JDBCName>local_hr</JDBCName>
             <jbo.ampool.doampooling>false</jbo.ampool.doampooling>
             <jbo.project>Model</jbo.project>
             <jbo.ampool.dynamicjdbccredentials>false</jbo.ampool.dynamicjdbccredentials>
             <AppModuleJndiName>model.AppModule</AppModuleJndiName>
             <ApplicationName>model.AppModule</ApplicationName>
          </AppModuleConfig>
       </AppModuleConfigBag>
       <ConnectionDefinition name="local_hr">
          <ENTRY name="JDBC_PORT" value="1521"/>
          <ENTRY name="ConnectionType" value="JDBC"/>
          <ENTRY name="HOSTNAME" value="localhost"/>
          <ENTRY name="DeployPassword" value="true"/>
          <ENTRY name="user" value="hr"/>
          <ENTRY name="ConnectionName" value="local_hr"/>
          <ENTRY name="SID" value="STGY"/>
          <ENTRY name="password">
             <![CDATA[{904}05DB46A9C39F51D1A4814423FFD9297C71]]>
          </ENTRY>
          <ENTRY name="JdbcDriver" value="oracle.jdbc.OracleDriver"/>
          <ENTRY name="ORACLE_JDBC_TYPE" value="thin"/>
          <ENTRY name="DeployPassword" value="true"/>
       </ConnectionDefinition>
    </BC4JConfig>

    Hi,
    reproduces for me. It appears that the parameter is not applied properly when executing the query.
    Frank

  • White background colour in Iframe?

    Hi everyone
    I hope you are able to help me with this problem I am having:
    I am working with an Iframe, where I would like the
    background colour to be a specific colour, relating to the colour
    next to the Iframe.
    The colour sorounding the Iframe is this #E6E3D2, the
    background colour of the html-page to which I am linking in the
    Iframe is the same colour, but nonetheless, the Iframe keeps
    providing a white frame surrounding the content-html-page.
    I have tried to make the Iframe and content.html page the
    exact same width, but that just give me a vertical scroller + the
    white frame.
    This is what I mean:
    http://i439.photobucket.com/albums/qq112/GD-Klubben/Example.jpg
    Are there anyone out there, who can explane to me (in very
    slow and easily understanding phrases ;o)) how I can get rid of the
    annoying white background colour?

    No, I haven't uploaded it anywhere yet. Not before I can
    solve the problem.
    But the code to the index.html is this:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Grand Danois Klubben i Danmark</title>
    <style type="text/css">
    BODY {
    SCROLLBAR-FACE-COLOR: #FFFFFF;
    SCROLLBAR-HIGHLIGHT-COLOR: #000000;
    SCROLLBAR-SHADOW-COLOR: #FFFFFF;
    SCROLLBAR-3DLIGHT-COLOR: #000000;
    SCROLLBAR-ARROW-COLOR: #6699FF;
    SCROLLBAR-TRACK-COLOR: #000000;
    SCROLLBAR-DARKSHADOW-COLOR: #990000;
    </style>
    <script type="text/javascript">
    <!--
    function DWUSER_scrollbarStyler() {
    // This is a stand in JavaScript function that interacts
    with the Dreamweaver Behavior Menu.
    // Do NOT remove this function
    //-->
    </script>
    <style type="text/css">
    <!--
    /* ScrollbarStyler - DO NOT MODIFY THIS CSS!!! */
    html,textarea{scrollbar-track-color: #C6C1A3;
    scrollbar-face-color: #C6C1A3; scrollbar-highlight-color: #C6C1A3;
    scrollbar-3dlight-color: #C6C1A3; scrollbar-shadow-color: #C6C1A3;
    scrollbar-darkshadow-color: #C6C1A3; scrollbar-arrow-color:
    #C6C1A3;}
    <!--
    body {
    background-image: url(Andet/forsidefaerdig.jpg);
    background-repeat: no-repeat;
    background-position:center;
    background-color: #C6C1A3;
    <br />
    body,td,th {
    font-family: Trebuchet MS;
    a:link {
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:hover {
    text-decoration: underline;
    color: #D32F12;
    a:active {
    text-decoration: none;
    .style16 {font-family: "Tw Cen MT Condensed", "Tw Cen MT
    Condensed Extra Bold"}
    .style17 {color: #E6E3D2}
    .style21 {
    font-family: "Tw Cen MT Condensed", "Tw Cen MT Condensed
    Extra Bold";
    color: #000000;
    .style23 {font-family: "Tw Cen MT Condensed", "Tw Cen MT
    Condensed Extra Bold"; color: #FFFFFF; }
    -->
    </style>
    </head>
    <body>
    <div align="center">
    <table width="1143" height="582">
    <tr>
    <th width="1135" height="24"
    scope="row"> </th>
    </tr>
    <tr>
    <th height="550" scope="row"><table width="1023"
    align="left">
    <tr>
    <th width="109" height="547" scope="row"><table
    width="100" cellpadding="5">
    <tr>
    <th class="style23" scope="row"><div
    align="right"></div></th>
    </tr>
    <tr>
    <th class="style23" scope="row"><div
    align="right"></div></th>
    </tr>
    <tr>
    <th class="style23" scope="row"><div
    align="right"></div></th>
    </tr>
    <tr>
    <th class="style23" scope="row"><div
    align="right"></div></th>
    </tr>
    <tr>
    <th class="style23" scope="row"><div
    align="right"></div></th>
    </tr>
    <tr>
    <th height="210" scope="row"> </th>
    </tr>
    </table>
    <p><br />
    </p>
    <p><br />
    <br />
    <br />
    </p></th>
    <td width="106"><br />
    <table width="102" align="center" cellpadding="5">
    <tr>
    <th width="86" scope="row"><div
    align="left"><span
    class="style23">Forside</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style21">Grand Danois</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Klubben</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Medlemskab</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Hvalpe</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Opdrættere</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Udstilling </span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Champions</span></div></th>
    </tr>
    <tr>
    <th height="24" scope="row"><div
    align="left"><span
    class="style16">Links</span></div></th>
    </tr>
    <tr>
    <th height="32" scope="row"><div
    align="left"></div></th>
    </tr>
    </table>
    <br />
    <br />
    <br />
    <br />
    <br /></td>
    <td width="792"><div align="center">
    <br />
    <br />
    <br />
    <iframe src="Underside Grand Danois.html" width="785"
    height="495" scrolling="Auto" frameborder="0"</iframe>
    </div></td>
    </tr>
    </table></th>
    </tr>
    </table>
    </div>
    </body>
    </html>

  • Quick Question - Find background colour of image?

    Hi guys,
    Its been years since I've used Photoshop, and I'm just trying out the Photoshop CS5 atm (a lot different from the simple PS7 that I was used to!) I've got an image that I want to find the background colour for, as I want to fill it to other images. I remember on the old versions if you erased an area the foreground colour would immediately just turn to the colour that you have deleted, but not anymore - I'm stuck!
    Any help, hope I've explained myself well!
    > Incidently, is there anyway I could purchase an old version of Photoshop? I'm a very infrequent user, and even the latest Elements software is pretty steep £50+. I'd happily pay a few pounds for Photoshop 7.
    thanks

    SongToRuin wrote:
    Hi guys,
    I remember on the old versions if you erased an area the foreground colour would immediately just turn to the colour that you have deleted, but not anymore - I'm stuck!
    I don't believe you're remembering a true difference in the Eraser Tool.
    With all versions of Photoshop, when you are working on the Background layer if you use the Eraser Tool it will paint in the color you have selected for the background swatch.
    With all the versions as well, if you're working on a true layer the Eraser Tool clears pixels to transparent.
    Now...
    If you use the Delete key, on the other hand, the operation becomes equivalent to Edit - Fill, and in the newest versions you're given a dialog with options.  There are modifier keys with which you can avoid the dialog.
    -Noel

  • How can I change the background colour when working on a doc in full screen view (pages)?

    Recently I have been working on docs without the distraction of having to see my desktop around my page file by using the full screen view in pages. I do find the contrast to an all black screen too harsh though and it makes my eyes more tired than seeing the clutter of my desktop around the page. Is there any way I can change the background colour?
    Any help much appreciated!

    When you are in Full screen mode move the cursor up to the top to show the Format bar. Then look to the far right. There you'll see Background  and a rectangle. Click on the rectangle and change the colour.
    For information on Pages download the Pages User Guide from your Pages Help menu.

  • How do I change the background colour on notes. I need a darker background due to a visual issue. Apple has now discriminated those with visual issues.  I am so not happy with many of the new changes because of this.

    I am so not happy with the new changes especially when it come to the ability to change background colours, fonts and font sizes/ colours... Does Apple really think that their only audience is the young cool crowd or people who do not have a visual impairment.  Think before you make changes to your software and programs.  You WILL lose more people to androids if you continue this way.
    At least give users the ability to make apps like notes their owned by allowing them to pick the style, theme, background and colour, font size and colour. 
    A very ****** off Apple user who is now looking at Androids.

    Hi Tricia,
    I'm sorry but I don't see an ideal way to do this. Is it the yellow label text, e.g:  "New" against the white background which is causing the difficulty?
    The only way I've found of getting the colors to change in Notes is via Settings>General>Accessibility>Invert Colors but then it looks like something has barfed all over your screen.
    I'd be very, very surprised if Apple do not fix this, firstly because I believe "Accessibility" is a legal matter and secondly because they will not want to cause difficulty for their customers.  We have to remember that this is a major, major overhaul of iOS, it has essentially been taken back to the drawing board and done from scratch again, it may take a little time, but I'm sure they will fix these issues.
    Regards,
    Steve

Maybe you are looking for

  • How can I create a new TC backup with ethernet, so I don't have to wait two days for a new wireless backup?

    How can I create a new TC backup with ethernet, so I don't have to wait two days for a new wireless backup? Several times in the last year, I've gotten a message that Time Machine needs to completely redo my backup. Using the wireless connection, thi

  • How do I get rid of the bookmarks toolbar?

    I don't use the Firefox toolbar so would I rather have it gone from my screen and have more screen room. Thank you in advance for your answer.

  • No batches/stocks were found - determination is performed online MFBF

    Hi Gurus, Can anybody please help me why we are getting this message in MFBF. When the user is trying to turn in production for material A in MFBF, and when they hit post with correction in the home screen of MFBF, in the next screen the system gives

  • Power Point Viewer

    Hello Everybody, I'm looking for a viewer that can show me some Power Point Slides (Not OOo and certainly NOT MS Power Point) I would like to use it as a viewer that captures .pps attachments in my mail. Does anyone here ever heard of such a program,

  • Upsize D3 NEF image -- what's the best way?

    Hi, I have to resize a few Nikon D3 NEFs to 57"x38" wide at 300 dpi.  I have one approach from a LR-guru/friend, but I'm wondering if others might have other suggestions.  I am using LR 3.4.1 and PS CS5 in Windows. Here's what I'm doing now: 1)  Make