Newbie question: how to display the logo of the company for all applications

Hi all:

I am new to APEX and in the thorough step 'Application two days Express Developer's Guide.

I have Oracle XE with APEX 3.1.2 installed.

I have a file called test.gif stored on my C:\logo\test.gif logo

The question is what is the step to display this logo on all pages for each application (I could build applications in the same workspace, and I like the same logo to all pages for each display application).

I have extensive air manual and this forum and cannot always understand.

Here is what I tried:

-Click on an app that I created in Application Builder
-Click on "shared components".
-Files-click == > Images and upload my C:\logo directory test.gif
-Return to page 'Components of the part' == > Logo and select / access to the following values:
> logo type: image
> logo: /i/test.gif
> logo attribute: width = "100" height = "20" alt = "Company Logo".

Save the changes. When I run my application, the company logo displayed as 'x' icon.

A I missed something?


Thank you!

Kevin

Kevin,

You wanted a step by step so that is.

You must first download your logo to your workspace file. Then you can assign it as a logo, so this step appears on all pages.

Before you start, I suggest that ensure you that your graphic file name does not include the spaces inside. Replace spaces by dashes, underscore or squish traits it.

1. application Builder-> shared-> files components-> Images.

2. click on the create button.

3. application for leave "No Application associated with" value, provide the specification of file, then click on the download button. When it's done, copy the name of the file (for example MyFile.gif).

4. go into the Application Builder-> shared-> Application-> definition components

5 scroll down the page to the section Logo and set the Type of Logo Image.

6 Logo, enter ' #WORKSPACE_IMAGES # ' follow-up of your files.

for example #WORKSPACE_IMAGES #MyFile.gif

7. Optionally, you can set the attributes of the Logo, for example, by specifying the height and width to display your image.

8. click on apply changes.

9. run app.

If you have the right to file specification, you should see your logo in the upper left corner. If you want elsewhere, you have to change the page template, which is way beyond the scope of this forum and the tutorial. :-)

Good luck

Stew

p.s. If it works for you, please give points for correct answer at the top of this topic.

Tags: Database

Similar Questions

  • Question: How to display the rating for the SURVEY

    Hello

    I use Lightroom for years. I like to use the mode of INQUIRY.  But today, I couldn't see the stars rating under each photo in the mode of inquiry; I don't see the status of the indicator.  Now, it's probably something I did, like hit a shortcut or something... but for the life of me, I can't understand how to bring this Visual information.  After searching online + fiddling around with the settings, I finally thought I'd come here and ask if anyone knows...

    Thank you!

    PS. Lightroom 4.3RC (why 4.3 RC, because I am one of these with a super slow Lightroom plagged in develop mode, especially with my D800 files!) I'm crossing my fingers with each update RC software is faster... )

    Look closely

  • How to change the password for all users in the database

    Hi buddies!

    Could someone tell me how to change the password for all users in the database? I want to set the same password for all users.

    Thank you.

    Nith

    Published by: user645399 on March 1, 2011 14:23

    Write the file spooling
    as

    Make sure that all profiles has password_verify_function with a NULL value

    then

    Select 'edit user' | username: ' identified by ;' from dba_users;

    you will get the output... you just run.

  • How to extract the ddl for all databases of links?

    DB: oracle11gr2

    Friends,

    I can get including db link the package DBMS ddl but could not able to find a way to extract the ddl for all the database link and the coil in a file recreate them in the future?

    Tried searching on OTN but no luck, if someone shares how them spool or point me to a particular forum that will be great.

    Thank you

    We may also use something simple, select as below to extract the ddl

    Select dbms_metadata.get_ddl ('DB_LINK', db_link, owner) vSQL of

    dba_db_links

    /

  • How to enable the CACHE for all LOB data

    Hello

    I want to activate the CACHE for all LOB in my database - 10.2.0.4

    Does anyone has generic script to activate the cache for all TRADES

    Thank you

    You should be able to write some dynamic SQL code. This will set each BUSINESS in the current schema CACHE

    DECLARE
      l_sql_stmt VARCHAR2(4000);
    BEGIN
      FOR lobs IN (SELECT * FROM user_lobs)
      LOOP
        l_sql_stmt :=
          'ALTER TABLE ' || lobs.table_name ||
          ' MODIFY LOB( ' || lobs.column_name || ' ) (cache)';
        execute immediate l_sql_stmt;
      END LOOP;
    END;
    

    Justin

  • SQL in Question actually. Select the items for all 12 months

    I am creating a notification request where I SUMMARIZED all of the amounts in the database for all 12 mount and come up with a result even if it isn't a amount totaled. I created a table called monthsInYear that has the ID (unique identifier) 1-12 and the months of Jan - Dec. I want SUM to the amount per month and arrived to the top with 12 results (one per month).

    I tried the query below, but sometimes with only 1 month and all amounts amounted to him.

    March484714.13

    I use:

    SELECT monthsInYear.month, IFNULL (SUM (income.amount), 0) AS amount

    OF monthsInYear

    Income ON EXTRACT(MONTH FROM income.dateAdded) = monthsInYear.monthID LEFT OUTER JOIN

    WHERE income.orgID = 10031

    AND the YEAR (income. DateAdded) = '2011'

    ORDER BY EXTRACT (MONTH FROM income.dateAdded) CSA

    Can someone tell me what I am doing wrong. I much prefer something like:

    January 3000

    February 3000

    March 4000

    April 0

    Maybe 5000

    June 6000

    July 5465

    ....

    But when I run the present, it gives me total for only the months which have in total and not 0 for those that go up as null. Any ideas?

    ....

    Also tried

    SELECT m.month, IFNULL (SUM (i.cost), 0) AS amount

    I have getExpenses LEFT OUTER JOIN monthsInYear m

    ON m.monthID = EXTRACT (MONTH FROM i.dateAdded)

    WHERE orgID = 10031

    AND YEAR (i.dateAdded) = '2011'

    GROUP BY m.month

    ORDER BY EXTRACT (MONTH FROM i.dateAdded) CSA

    There are two problems. First of all, in your join tables are reversed. A LEFT JOIN returns all the records in the left table (spending) even if there is no matching record in the table to the right. What you want, it's the opposite. If the month table should be on the left side of the JOIN:

    ...

    OF monthsInYear m LEFT JOIN getExpenses i m.monthID = EXTRACTION (i.dateAdded MONTH)

    Second, when there is no corresponding record in the expense, the column values will be null. So as soon as you use one of the fresh fields in your WHERE clause, that is to say

    WHERE i.orgID = 10031

    AND YEAR (i.dateAdded) = '2011'

    ... these missing documents are deleted, because a null value is never equal to what it is. So you are denying the outer join altogether. You must move these conditions in the JOIN clause instead:

    SELECT m.month, IFNULL (SUM (i.cost), 0) AS amount

    MonthsInyear LEFT OUTER JOIN getExpenses m I have

    ON m.monthID = EXTRACT (MONTH FROM i.dateAdded)

    AND i.orgID = 10031

    AND YEAR = 2011 (i.dateAdded)

    GROUP BY m.month

    ORDER BY m.month

  • How to display the company logo in exit excel.

    Hi all

    I developed a report RDF (as a data model) and an editor of BI for available (templete .rtf).

    If output is .pdf, shows the logo of the company, but for excel logo not displaying not output.

    suggest me any xml tag is there to view the log output excel.

    Warm greetings,

    Ravi.

    Oracle xml publisher of dynamic images

  • Question how to display the layer on a document level automatically-javascrip at the level of the document?

    I have a form in which the user selects immediately their favorite in a drop-down list called color FavColor they have the choice between three colors: blue, yellow or green.  Based on the user's selection, custom layers (BlueLayer or YellowLayer or GreenLayer) are immediately displayed with additional specific questions for the user.  Right now I have the Javascript below in the area of validation of the box FavColor.  It works very well.  My problem occurs after the user saves the document and try to reopen it to print it.  The data is all there, but the relevant layer does not appear automatically (I have to re-enter their FavColor so he can run the script again).  Can someone help me find a solution for this? Is it possible to run a script when a document is opened to determine which layer should show?  Or do I have to create the user save the file differently so that the entry is "committed" to the document?  I'm still pretty new to javascript and programming these formulas so thank you in advance for your help!

    var layers = this.getOCGs (0);

    for (var i in layers) {}

    If (layers [i] .name is "BlueLayer")

    .State layers [i] = (event.value == "Blue");

    ElseIf (layers [i] .name == "YellowLayer")

    .State layers [i] = (event.value == "Yellow");

    ElseIf (layers [i] .name == "GreenLayer")

    .State layers [i] = (event.value == "Green");

    }

    I answered this question under your original thread...

  • How to display the list of all the constraints, triggers, procedures... .etc

    Hello
    How to view a list of all the available constraints, triggers, procedures, functions and packages in a database. And how to view its definition?

    user12222356 wrote:
    Not working is this said sql statement "object"sys"". "" DBA_OBJECTS"does not exist"

    OK, so the problem is that you have not allowed access to any data dictionary table. If you want to be able to view all of the DBA_ * dictionary of data tables, you need the ADMINISTRATOR to grant you the privilege to CHOOSE ANY DICTIONARY.

    In the future, when you post an error message, in addition to displaying the error message, it will be useful if you can get the error number, for example, that is, ORA-xxxxx

    Justin

  • How to display the information for the account of the past...

    original title: old perental controll reports

    How to view information for a user account on my computer from the past? All I can shoot upwards is from today, when I walk them. I don't need any kind of detailed information just the password of the account and if it has been changed since its creation. It was only created a cpl months however. Please help lol!

    Hi Candy86,

    There is no way to recover old passwords the value on the computer, or the old parental control information.

  • Windows vista Home premium recovery question - how to get the source for windows vista home edition premium as the recovery does not work since the recovery partition

    How to get the source to windows vista Home premium recovery is not from the recovery partition and gives me an error message

    Hello

    Contact the computer manufacturer and ask them to send you to vista recovery disks to reinstall the operating system back as it was when you bought it

    they do it for a nominal cost of $

    or borrow a vista microsoft dvd; not a HP, Acer recovery disk etc

    Make sure that you borrow the correct 32-bit or 64-bit microsoft dvd to your computer

    they contain all versions of vista

    This is the product key that determines which version of vista is installed

    http://www.theeldergeek.com/Vista/vista_clean_installation.html

    How to replace Microsoft software or hardware, order service packs and replace product manuals

    http://support.Microsoft.com/kb/326246

  • How to display the note for a cell of table with javascript?

    My goal is to do it with javascript. No manipulation of the side server.

    < af:table id = "t1" >
    < af:column id = "c1" >
    < af:outputText id = "ot1" >...
    < af:clientListner ...method="showpopup"/ >
    < /... >
    < /... >
    < /... >

    ....

    < af:popup id = "p1" >
    < af:noteWindow id = ot2 >
    here to show the value of ot1
    < /... >
    < /... >


    function showPopup (e) {}
    var text is e.getSource () .getValue ();.
    var popup is e.getSource (.findComponent("::p1"));.
    now, how to upgrade the content of the notewindow?
    Popup.Show ();
    }

    Hello

    You can try with something like that.

                   
                        
                    
    
                    
                        
                            
                        
    
                    
                    
                        function showPopup(evt){
                            var ot1 = AdfPage.PAGE.findComponent("ot1");
                            var text=ot1.getValue();
                            var popup=AdfPage.PAGE.findComponent("p1");
                            var ot2=AdfPage.PAGE.findComponent("ot2");
                            ot2.setValue(text);
                            popup.show();
    
                            }
    
                    
    

    Arun-

  • Oracle UCM - how to display the reason for the rejection workflow

    I've created a workflow

    Contributor->->-> approval of HOD Reviewer2 Reviewer1

    If Reviewer1 Reviewer2 or approval of HOD "REJECT" the document that it redirected to the last step of the workflow. All rejection, they enter "reject the reason", but the reason for the rejection is not displayed to the user of most recent workflow.

    I need a solution to most come

    Thank you
    Deepak

    Please read the readme.txt file. It clearly states:

    ""If you wish, include display_reject_reason could be used to display the reason.". (i.e. it has not yet been added to any page)

    What you need to do is add a line

    <$include display_reject_reason$>
    

    somewhere in workflow_review_frames.htm (or find an inclusion where it can be added).

  • How to display the ToolTip for button

    Hello

    I use 11.1.1.4.

    I want to show the ToolTip in the button. tag that so I want to use and to display the ToolTip.

    Best regards, rami

    Rami,

    Use the property 'shortDesc"of the button.

    John

  • How to know the downloads for any application

    Hi all

    Please tell me how to see the total number of downloads of the application.

    I see no possibility to see this on the account of the seller.

    My most recent application is: Bubble Fun  

    Strange... Here is the screenshot of my account of the seller. I can see the option in two places.

    If you still can not get the number of download, you can touch [email protected]

Maybe you are looking for

  • How can I change the background on my toolbbar?

    I used to have a background on my toolbar at the top of my browser. It isn't there now.How can I put another?

  • Question of B550 Wireless all-in-One

    So I'm a happy owner of ideacentre B550 that came with windows preinstalled 8.1. After using it for awhile, I switched to linux due to some work stuff, then completely uninstalled victory 8.1. Now, I just installed windows 7 x 64 and had some problem

  • Characters of legal Firmware Password

    Characters of legal Firmware Password What are the legal characters to use the password of the firmware for a mac. I read alphanumeric are accepted and that of other characters may cause a problem, but this seems silly. What characters are allowed as

  • HP Officejet Pro 6830: Integrated network capabilities have been disabled.

    Trying to connect to my HP Officejet Pro 6830 printer wireless network, but it says 'integrated network capacities have been disabled. Contact your administrator or the person who set up the printer. I put the printer myself, and there is no administ

  • I am a beginner in Illustrator CS6. How to cut my grunge effect from an image/form?

    Is there a way to reduce the effect of grunge on this picture so that I can see through what makes it look like there are holes in the circle, I want to make a PNG image. Help, please!Layer 1Underlay - effect Grunge < Group >Underlay - < Path > form