Display favicon in Apex?

Is there any way to display my own favicon.ico in Apex's URL bar?
If yes, how?
Thanx

Hi,
Got the ans from forum itself try this.
Put these in templates header
after head
<link rel="shortcut icon" href="#IMAGE_PREFIX#my_images/favicon.ico" />
<link rel="icon" href="#IMAGE_PREFIX#my_images/favicon.ico" type="image/x-icon">
Regards
Sanjay Patel

Similar Messages

  • How can I change the event display in an APEX 4.2 calendar?

    Colleagues:  The APEX calendar feature is pretty neat, but of course there's a feature I'd like to use but can't find how/where to change it.  In other calendaring apps (e.g., Thunderbird) when an event is logged, like tomorrow's staff meeting, the time is blocked out vertically for the length of the event.  So for example: if staff is from 2pm-4pm, both 2-3 and 3-4 are colorized so a quick visual will show what times during the day are not available.
    The APEX calendar will show a colored bar for the start time of the event, but not a blocked-out vertical for the entire event.  Make sense?  Any way I can change the calendar/event view to accommodate this?
    Thanks for your help.
    Broc Norman II
    Sr DBA
    GIT / Hillsboro Manufacturing Site

    use - Region Plugin - SkillBuilders Calendar which is useful to display event as your requirement
    Try this.
    Pars.

  • How to load PDF files into oracle database and display them in APEX

    Hi All,
    We have a requirement for loading the Loading PDF files (lots of PDf files) to the oracle database and then display the PDF files in the Oracel APEX report.
    So that User can view the PDF files. Our current APEX verison is 3.2..
    Please let me know how to implement it and where to find the sample application!
    Thanks in advanced!
    Jane

    Thanks Tony for your quick response!
    We need to load a lot of PDfs (history + current).
    I have a questions about the SQL loader. I am trying to insert a pdf file into a table by following the oracle loading sample:
    http://download.oracle.com/docs/cd/B10501_01/text.920/a96518/aload.htm
    Example Data File: loader2.dat
    This file contains the data to be loaded into each row of the table, articles_formatted.
    Each line contains a comma separated list of the fields to be loaded in articles_formatted. The last field of every line names the file to be loaded in to the text column:
    Ben Kanobi, plaintext,Kawasaki news article,../sample_docs/kawasaki.txt,
    But i don't know to where should I put my pdf file on the server.
    for example:
    ,../sample_docs/kawasaki.txt,
    Where is the file 'kawasaki.txt'??
    I try my local path, it didn't work. like c:\temp.
    then I loaded teh PDf file into our server(/findev20/olmtest/orafin/11.5.7/olmtestcomn/temp) , and In my data file. I put the path
    1, pdf_emp1,../findev20/olmtest/orafin/11.5.7/olmtestcomn/temp
    but I got the error: the system can not find the file specified.
    Where should I put the PDf files on the server and how to specify the path in the data file?
    Thanks!
    Jane

  • My lov results into the return value instead of the display value in APEX

    Hi,
    For 1 of the columns I'm representing in APEX, I choose 'Display as text, based on a lov'. I'm using:
    select aan.id||', '||r.naam||', '||a.woonplaats d, aan.id r
    from wmo_aanvragen aan
    , wmo_dossiers d
    , wmo_relaties r
    , wmo_adressen a
    where d.avg_1_id = aan.id
    and d.rel_nummer = r.nummer
    and a.rel_nummer = r.nummer
    and a.id = (select min(e.id) from wmo_adressen e where e.REL_NUMMER = r.nummer
    and e.EIND_DATUM is null)
    and d.id = (select min(f.id) from wmo_dossiers f where f.AVG_1_ID = aan.id)
    But somehow it displays the 'aan.id' value instead of the display value. Does anyone know howcome?? In TOAD it works fine
    Niels
    Edited by: user6394263 on 10-apr-2009 1:22

    Hello Niels,
    Your LOV Displays your concatenated value, but returns the "aan.id" (into the Form field), just as expected. If you want to show the description on your Form, use a PopUp LOV - Displays Description Return Key value
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    You can reward this reply by marking it as either Helpful or Correct ;-)

  • Display PDF in Apex Region

    Hi,
    I have a requirement to view the PDF content in the apex page region, I am using Apex 3.2 and Oracle 10 Enterprise edition.
    I Uploaded the PDF file in the shared component under static file. Now i need to view the content of the PDF file.
    Please suggest me method to view the PDF content.
    I saw the link in denes blog here he shows how the PDF is getting displayed. but there is no steps of methods mentioned
    >>http://htmldb.oracle.com/pls/otn/f?p=31517:108:56351399589001:::::
    Please suggest.
    Thanks
    Sudhir

    Hi Sudhir,
    when you look at page 3, region "pdf canvas" then you will see the code:
      <canvas id="the-canvas" style="border:1px solid black"></canvas>
      <!-- Use latest PDF.js build from Github -->
      <script type="text/javascript" src="https://raw.github.com/mozilla/pdf.js/gh-pages/build/pdf.js"></script>
      <script type="text/javascript">
        // NOTE:
        // Modifying the URL below to another server will likely *NOT* work. Because of browser
        // security restrictions, we have to use a file server with special headers
        // (CORS) - most servers don't support cross-origin browser requests.
        var url = '#WORKSPACE_IMAGES#Shilpa.pdf';
        // Disable workers to avoid yet another cross-origin issue (workers need the URL of
        // the script to be loaded, and dynamically loading a cross-origin script does
        // not work)
        PDFJS.disableWorker = true;
        // Asynchronous download PDF as an ArrayBuffer
        PDFJS.getDocument(url).then(function getPdfHelloWorld(pdf) {
          // Fetch the first page
          pdf.getPage(1).then(function getPageHelloWorld(page) {
            var scale = 1.5;
            var viewport = page.getViewport(scale);
            // Prepare canvas using PDF page dimensions
            var canvas = document.getElementById('the-canvas');
            var context = canvas.getContext('2d');
            canvas.height = viewport.height;
            canvas.width = viewport.width;
            // Render PDF page into canvas context
            page.render({canvasContext: context, viewport: viewport});
      </script>
    There you can change the url, I actually already reference your workspace file in there.
    But please give a list of browsers you are trying to support. It all depends on the specifics.
    Cheers,
    Dietmar.

  • Any example to add favicon to apex app?

    Hi, gurus:
    I need to add a favicon to my apex app. I came across the discussions, and just know I need to to add some code to template. Is this template under shared components-->theme? Would anyone show me an example?
    Thanks.
    Sam

    lxiscas wrote:
    I need to add a favicon to my apex app. I came across the discussions, and just know I need to to add some code to template. Is this template under shared components-->theme? Would anyone show me an example?Templates are&mdash;unsurprisingly&mdash;under "Templates".
    See
    <li>{thread:id=2223161}
    <li>{thread:id=2246143}

  • Safari not displaying favicons

    My Safari won't display any favicons. Does anyone know an answer to this problem? All I get is the generic globe thing. Even if I bookmark them.
    Thanks

    I'm having the same problem. It all started when I ran Cache Out X (which I have done before without this problem occuring).

  • Firefox not displaying favicon/.ico file for specific website

    Firefox has always displayed the favicon for my website, until recently. Now there is just a blank space where the favicon should be. I am able to see the favicon for all other websites except my own. It is a wordpress site, so I followed their most recent instructions for adding a favicon. I even tried some other guidelines and tips for adding .ico files, just in case wordpress was missing something, but still no luck. I have double-checked the file format as a 16x16px .ico file and made sure the code & image location within my website directory was correct... Everything looks as it should. The favicon is displaying perfectly in all other browsers I tried, such as Chrome, Safari, Opera & IE. I have cleared my cache, cleared my browser history and even uninstalled/reinstalled Firefox. I also tried another computer using a different IP address. It just isn't displaying.
    When I preview the .ico file under 'page info -> media' it looks like Firefox is locating the image and recognizing the file dimensions, but nothing appears in the preview window and under 'file size' it just says "unknown (not cached)."
    Here is the link to the site: http://www.mattielynn.com/
    Does anyone know why this might be happening?

    That image doesn't seem to be working in Firefox 3 and 8 (works in Firefox 9 and later).
    It works if I save it as 24 bit instead of 32 bit.
    <pre><nowiki>data:image/x-icon;base64,
    AAABAAEAEBAAAAEAGABoAwAAFgAAACgAAAAQAAAAIAAAAAEAGAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAACa5eqb5eqa5eqf7PGd6O2g7/VskpUxKypNWVtifoA4NjY2MzN+srWf7fKa5eqa5eqb5uub
    5eqa4+hlhYeOzdKk9fppj5ExKilKVVeNy89BRUYzLy54pqmg7vSb5eqa5eqb5+ye7PGOztI1MTFW
    a2yk9flrkZQxKypFTU6U2t9LV1gxKypwmJuh8faa5Oma5epigIOi8veDu782MzM1MjGHwcV0oKMy
    LSxBR0iT2N1PXV8zLy5KVVaY4OSc5+yb5eowKilrj5J5p6s1MzI0MTFeeXtznqEzLi4/QUGS1dlU
    aGk2MzIzLi1znqGh8PWa5epNXF01MjFFTU05OTk5ODg7PDxMWVo4Nzc7OzyOzNFbdHUzLy9FS0xM
    WVqX3+Sc5+yFvcE3NTU3NTU5Ojo+QEE5ODg3NjU5Ojk4NjaJxcljgYQwKSlXbW5LWFl4qKuf7vOf
    7vNdd3kzLy82MzNddXdTZGU1MzI6Ojo2MzODur5tk5YwKShUaGlkg4VYbW+g7vOe6u+Q0tY/Q0My
    LCxjgIJ/s7Y1MTE5OTk1MTF7qq5znqExKypKVld+sbVETEyW3OGa5eqg7/V2oqUtIyNcdHak9fpb
    dHYzLi00MDBznqF4p6ozLi1ARkaMy89FTU2Dur6a5eqb5uud6e9skZN4qKyh8PaU2d5KVVYwKShp
    jI5+sbU1MTE5ODiLyc1ZcHJqjZCb5eqa5Omb5uuf7vOd6u+a5Omf7vOMy884NjZed3mFvsI2MzM1
    MTF/tLhynJ9VaGma5eqb5eqa5eqb5eqa5eqa5eqa5eqf7fKBt7qEvcGNzdE7PDwzLi1ynJ+Du79N
    Wlua5eqa5eqa5eqa5ema5eqa5eqa5eqa5eqf7PGf7vOW3OFFTE0yLCxjgYOLyM1LV1ia5eqa5eqa
    5eqa5eqa5eqa5eqa5eqa5eqa5eqb5eqe6/BWamwxKypTZmeMys9MWFma5eqa5eqa5eqb5eqa5eqa
    5eqa5eqa5eqa5eqa5eqg7/Rvl5oyLSxFTE19rrJKVVYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA</nowiki></pre>

  • Creating and displaying Varrays in Apex 4.1

    Hi,
    I am creating quite a sophisticated database, which has to support relations between different tables. In order to implement that, I've decided to use user-defined datatype - a varray which consists of 100 integers (and only of that) that will contain ID's to different rows in different tables. Since it is a user-defined datatype I have problems with using it in Application Express :)
    First question: Is there any way to make this simple datatype 'readable' for Apex? In each application I create it shows that it is 'an unsupported datatype'. Maybe I should define something more than just varray construction - the way Apex should read and edit it etc ?
    Second question: How can I implement a function that will read the IDs in the varray and transform them into names to which that IDs correspond? I would like an application to show full name of an organization (ex. "ABC Corporation") instead of its ID. I tried to put some part of code that takes up the name of an organisation in a row with given ID into +"Source"+ form in the +"Edit page item"+, however Apex doesn't seem to get the fact that the data is in different table. Any ideas? :)
    I will be grateful for any help since it is an urgent case :]

    KamilGorski wrote:
    I would happily do that if only I had more time to study SQL and learn it properly :) Unfortunately, our start-up company has no time and money at the moment to allow me to do so.Then isn't using technologies that no one knows rather a strange decision?
    But coming back to your solution - it still works only if user inputs only one product quality. Let's say that user has chosen 3 qualities and the 'SELECTED_QUALITIES' collection looks like that:
    n001 = 1,
    n002 = 3,
    n003 = 5
    And since the SELECT query you have created compares pq.quality_id only to n001, it returns all the products that have the quality no 1 - not all the products that have all three selected qualities - 1, 3 and 5. Of course, we can change the 'EXISTS' condition and add more 'OR' conditions like that:
    where pq.quality_id = q.n001
    or pq.quality_id = q.n002
    or pq.quality_id = q.n003But it has few flaws - first we assume that we know the number of qualities user has selected - 3 (and we don't know that), You've misunderstood. SQL is row based. To handle multiple values, we create more rows, not additional columns. In your preferred terms, the result of any query is an <i>m</i>&times;<i>n</i> array of columns and rows, where the number of columns <i>m</i> is fixed, and the number of rows <i>n</i> varies according to the query predicates.
    It is not necessary to know the number of selected qualities, simply create a row in the collection for each selected quality to give a set of selected qualities.
    The SELECTED_QUALITIES collection should look like:
    N001
       1
       3
       5
    secondly the query will return all the products that have one of the three selected qualities (and we want products that have all three qualities). That wasn't really clear from the information previously given, but it's certainly possible. With <tt>product_qualities(product_id, quality_id)</tt> as a primary/unique key, and with no duplicates in the selected qualities, a solution is the set of all products with the selected qualities, where the number of qualities matched for each product equals the number of qualities selected, as in this example:
    SQL> create table products (
      2      product_id    integer       primary key
      3    , product_name  varchar2(30)  not null);
    Table created.
    SQL> create table qualities (
      2      quality_id    integer       primary key
      3    , quality_name  varchar2(30)  not null);
    Table created.
    SQL> create table product_qualities (
      2        product_id  integer   not null references products
      3      , quality_id  integer   not null references qualities,
      4      constraint product_qualities_pk primary key (
      5            product_id
      6          , quality_id))
      7    organization index;
    Table created.
    SQL> create index product_qualities_ix2 on product_qualities (
      2      quality_id
      3    , product_id);
    Index created.
    SQL> insert all
      2    into products (product_id, product_name) values (1, 'widget')
      3    into products (product_id, product_name) values (2, 'thingummy')
      4    into products (product_id, product_name) values (3, 'whatsit')
      5    into products (product_id, product_name) values (4, 'gizmo')
      6    into products (product_id, product_name) values (5, 'gadget')
      7    into products (product_id, product_name) values (6, 'contraption')
      8  select * from dual;
    6 rows created.
    SQL> insert all
      2    into qualities (quality_id, quality_name) values (1, 'green')
      3    into qualities (quality_id, quality_name) values (2, 'silver')
      4    into qualities (quality_id, quality_name) values (3, 'shiny')
      5    into qualities (quality_id, quality_name) values (4, 'furry')
      6    into qualities (quality_id, quality_name) values (5, 'digital')
      7    into qualities (quality_id, quality_name) values (6, 'hd')
      8    into qualities (quality_id, quality_name) values (7, 'wireless')
      9  select * from dual;
    7 rows created.
    SQL> insert all
      2    into product_qualities (product_id, quality_id) values (1, 1)
      3    into product_qualities (product_id, quality_id) values (1, 3)
      4    into product_qualities (product_id, quality_id) values (2, 2)
      5    into product_qualities (product_id, quality_id) values (2, 4)
      6    into product_qualities (product_id, quality_id) values (3, 1)
      7    into product_qualities (product_id, quality_id) values (3, 3)
      8    into product_qualities (product_id, quality_id) values (3, 5)
      9    into product_qualities (product_id, quality_id) values (4, 2)
    10    into product_qualities (product_id, quality_id) values (4, 4)
    11    into product_qualities (product_id, quality_id) values (4, 6)
    12    into product_qualities (product_id, quality_id) values (5, 2)
    13    into product_qualities (product_id, quality_id) values (5, 3)
    14    into product_qualities (product_id, quality_id) values (5, 5)
    15    into product_qualities (product_id, quality_id) values (6, 1)
    16    into product_qualities (product_id, quality_id) values (6, 3)
    17    into product_qualities (product_id, quality_id) values (6, 5)
    18    into product_qualities (product_id, quality_id) values (6, 7)
    19  select * from dual;
    17 rows created.
    SQL> commit;
    Commit complete.For the purposes of creating a quick and simple example outside of APEX, I'm using a temporary table instead of the SELECTED_QUALITIES APEX collection. For various reasons collections work better in APEX than GTTs and are the preferred approach for temporary storage.
    SQL> create global temporary table selected_qualities (
      2    n001 integer)
      3  on commit delete rows;
    Table created.With one quality selected, we get all the products having that quality:
    SQL> insert into selected_qualities (n001) values (1);
    1 row created.
    SQL> insert into selected_qualities (n001) values (1);
    1 row created.
    SQL> select
      2            p.product_id
      3          , p.product_name
      4  from
      5            products p
      6           join product_qualities pq
      7             on p.product_id = pq.product_id
      8           join selected_qualities sq
      9             on pq.quality_id = sq.n001
    10  group by
    11            p.product_id
    12          , p.product_name
    13  having
    14             count(*) = (select count(*) from selected_qualities);
    PRODUCT_ID PRODUCT_NAME
          1 widget
          6 contraption
          3 whatsitThese products all have the next quality added, so continue to be returned:
    SQL> insert into selected_qualities (n001) values (3);
    1 row created.
    SQL> select
      2            p.product_id
      3          , p.product_name
      4  from
      5            products p
      6           join product_qualities pq
      7             on p.product_id = pq.product_id
      8           join selected_qualities sq
      9             on pq.quality_id = sq.n001
    10  group by
    11            p.product_id
    12          , p.product_name
    13  having
    14             count(*) = (select count(*) from selected_qualities);
    PRODUCT_ID PRODUCT_NAME
          1 widget
          6 contraption
          3 whatsitThen as additional qualities are selected, the result set is progressively reduced:
    SQL> insert into selected_qualities (n001) values (5);
    1 row created.
    SQL> select
      2            p.product_id
      3          , p.product_name
      4  from
      5            products p
      6           join product_qualities pq
      7             on p.product_id = pq.product_id
      8           join selected_qualities sq
      9             on pq.quality_id = sq.n001
    10  group by
    11            p.product_id
    12          , p.product_name
    13  having
    14             count(*) = (select count(*) from selected_qualities);
    PRODUCT_ID PRODUCT_NAME
          6 contraption
          3 whatsit
    SQL> insert into selected_qualities (n001) values (7);
    1 row created.
    SQL> select
      2            p.product_id
      3          , p.product_name
      4  from
      5            products p
      6           join product_qualities pq
      7             on p.product_id = pq.product_id
      8           join selected_qualities sq
      9             on pq.quality_id = sq.n001
    10  group by
    11            p.product_id
    12          , p.product_name
    13  having
    14             count(*) = (select count(*) from selected_qualities);
    PRODUCT_ID PRODUCT_NAME
          6 contraption

  • Button display problem in APEX!!

    Hi All,
    I have created two buttons as mentioned below for both buttons# Now i need to display both buttons side by side. Currently it is diplaying one after the other.
    How we can achieve this#.
    Button Style#Template based button
    Button region#Left
    But the difference is button tempalte
    First Button#<input type="button" onclick="#LINK#" value="#LABEL#" class="t13Button" #BUTTON_ATTRIBUTES# />
    Second Button#
    <table class="t18Button" cellspacing="0" cellpadding="0" border="0" summary="">
    <tr>
    <td class="t18C"><input type="button" #BUTTON_ATTRIBUTES# value="#LABEL#"/></td>
    </tr>
    </table>
    Thanks,
    Anoo..
    Edited by: Anoo on May 2, 2012 6:21 AM

    What happens if you do this ?
    <input type="button" onclick="#LINK#" value="#LABEL#" class="t13Button" #BUTTON_ATTRIBUTES# /><input type="button" #BUTTON_ATTRIBUTES# value="#LABEL#"/>Edited by: 910011 on May 3, 2012 8:43 AM
    Edited by: 910011 on May 3, 2012 2:09 PM

  • Displaying Favicons on Safari

    There are one reason left for me to not to use Safari. Safari getting faster and faster.
    I do not use names for my favorites especially the ones in bookmark bar. Because favicons tell me what really are.
    Do we really need to read the name of the bookmark?
    Do we really need to waste the valuable space on bookmarks bar?
    Here is the screenshot of Chrome & Safari bookmarks bar.
    I'm afraid only Chrome give my time back.
    There must be an extention, tweak or any other solution for that.
    Any clue?

    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Safari/WebpageIcons.db
    Click Go then move the WebpageIcons.db file to the Trash.
    Quit and relaunch Safari.
    It may take a day or two for your webpagicons to re populate.

  • HTML region in APEX - displaying chart

    Hi,
    I have a URL that opens up a chart... May I know how to display it in APEX
    Here is the URL
    http://ichart.finance.yahoo.com/c/bb/b/bce.to?lang=en-CA&region=CA&width=350&height=180
    I tried few things such as putting it in a script
    <html>
    <body>
    <script type="text/javascript" src="http://ichart.finance.yahoo.com/c/bb/b/bce.to?lang=en-CA&region=CA&width=350&height=180">
    </script>
    </body>
    </html>
    etc... but still of no use
    Please advice

    Tal,
    Embed this HTML in your Region Source:
    <a href="http://ichart.finance.yahoo.com/c/bb/b/bce.to?lang=en-CA&region=CA&width=350&height=180">Finance Chart</a>Jeff

  • APEX Listener and EPG - strange behaviour

    Hi
    For some years, I've used EPG for APEX but have struggled with performance particularly as I can have up to 150 student developers using at any one time.
    I do a fair amount of work using ORDImage and have successfully developed APEX applications to upload image files and display full-size and thumbnail images.
    After upgrading to APEX 4.1 (from 4.0), I decided to install APEX Listener standalone.
    Before I did so I checked that my applications still worked in 4.1 and they did.
    However, just installing APEX Listener but not configuring it (yet) has meant that my image display in a report using a procedure based on wpg_docload.download_file( l_ordimage_image.source.localData ) no longer works in EPG - the images are not displayed.
    Configuring APEX Listener and running the same application through that DOES display the images.
    So this part of the application works under APEX Listener but not under EPG.
    My application also allows users to upload images from APEX_APPLICATION_FILES using standard code. Under APEX Listener after uploading, I'm left with a blank page with a wwv_flow.accept URL although the image does indeed upload. Under EPG it works as expected and I get a success confirmation.
    So this part of the application works under EPG but not under APEX Listener.
    Has anyone else come across different behaviour depending on the mode of connection?
    Thanks
    Brian
    [Oracle EE 11gR2, Windows Server 2008R2, APEX 4.1, APEX Listener 1.1.3]

    Hi Brian,
    it sounds like you have both EPG and APEX Listener running on the same machine, so your problem might result from a port conflict. Note that both services use TCP port 8080 as default.
    At least a port conflict would explain the strange behaviour in your case, some things working on one web server and some on the other.
    Some parts of your initial post hint to that direction, e.g.
    However, just installing APEX Listener but not configuring it (yet) has meant that my image display in a report using a procedure based on >wpg_docload.download_file( l_ordimage_image.source.localData ) no longer works in EPG - the images are not displayed.... because the APEX Listener only interfere with the EPG if it is at least running on the same machine as your database and furthermore, if it is unconfigured in terms of ist database connection, a port conflict might be the only way it could cause anything like that.
    However, if you are sure that's not the issue, please check if you see any error in the APEX Listener's log for the following action you performed:
    My application also allows users to upload images from APEX_APPLICATION_FILES using standard code. Under APEX Listener after uploading, I'm left with a blank >page with a wwv_flow.accept URL although the image does indeed uploadIf you actually see just a blank screen, something very bad must have happened and you should see some kind of stack trace there.
    For further investigations, if necessary, it would be helpful to know how you deployed or started your APEX Listener and which JDK version you use.
    For the moment, I still think the port conflict is my best guess.
    You could avoid it by either changing the port for EPG (I'd not recommend that if you have other users still using it) or by changing the port for your APEX Listener.
    -Udo

  • How to change external display resolution WITHOUT clicking "CONFIRM"?

    I have a somewhat unusual situation. My MacBook laptop is actually now a ModBook (a pen-tablet computer), and as such I no longer have a trackpad attached to it. All of my inputs are via the stylus, tapping directly on the built-in display.
    This works perfectly fine, except when I need to give presentations on an LCD projector (which is quite often lately). I like to use the projector as an external monitor, so that I can run the Keynote presentation on it while using my laptop screen as the presenter's display, with the upcoming slide, etc. If the projector doesn't give me an ideal native display option (sometimes, the aspect ratio for the  3 or 4 resolutions available in the Displays drop-down in the menubar turn out to be stretched or squeezed), then I, naturally, have to open the Display System Preferences and try out different resolutions.
    The problem is, since my stylus only interacts by clicking directly on the built-in-display, I have no way of moving the cursor over to the external display when the dialog box with the "Click here to confirm change/You have 15 seconds..." message appears. So I can never click it ... so I can never confirm the new settings.
    The workarounds I've used so far are:
    - Mirror displays (not ideal, as I need the presenter preview of the next slide)
    - borrow a mouse from someone (usually from a Windows desktop, frankly) and plug that in to briefly mouse over and click the confirm button
    I'd love to find a software workaround that allows me to NOT mirror displays and also doesn't require me to carry around a mouse all the time (my laptop bag is already overstuffed...).
    Thanks.

    Fateh wrote:
    I hope that my question is clear ... Nope.
    How to change the display resolution of APEX ??APEX doesn't have a display resolution. "Display resolution" is an attribute of the device and user agent software used to view the APEX page.
    What do you mean by "the display resolution of APEX"?
    In other word, if an end user sees large elements on a pageWhat "large elements"?
    then he/she zooms it outHow?
    "Zooms" what&mdash;the entire page or a single "large element"?
    How can I set a proper ZOOM for my app by default ...Meaning what?
    And as usual, we're missing:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s)
    You've been posting here for years. You know this basic information is necessary to understand and reproduce problems.
    If you're looking for help it doesn't seem unreasonable that you make the effort to provide a full, clear but concise description of the problem or requirement.

  • How to display three LOVs for a single label name

    I have requirement to display three LOVs in a form which needs to be displayed side by side (instead of each item in a separate column). The name is common for all three cascaded LOVs and also I have other apex items in the same form displayed as two apex items per each row. The display format is something like ..
    Item1: Tex field Item2: Text field
    Item3: Radio button Item4: Text Field
    Item5: Text Area
    Item6 : LOV1 LOV2 LOV3
    any ideas are appreciated.
    thanks,
    Surya

    Surya:
    This is easy to do. Here's how
    Define the first LOV as you would normally.
    For the second and third LOVs set the following attributes
    Label : Leave Empty
    Begin On New Line:NO
    Field:NO
    Varad

Maybe you are looking for

  • Implement IP File Upload to a web template (with queries) - HTML Coding?

    Dear experts, we have implemented integrated planning - file upload. now we want to create a web template , which should include some queries AND also the file upload in a separat tab in this template. following link (file upload) should be included

  • Its possible print from my galaxy note II?

    I ve bougtht a hp 4620 printer wireless one, I m trying to use my cel to print but won't do it. Appear small screen saying no device found. If anybody know how to enable or disable anything can work it out? With the samsung galaxy note. I already got

  • GPS issues

    Hi all, I travel to the States and Canada a lot and used a Garmin 265WT for a while. Read all the GPS /Nav reviews and settled for CoPilot HD on a new ipad 3G 64. Maps loaded onto device but it keeps showing "determining your current location" It doe

  • GDM does not allow resolution while Gnome does

    My xorg.conf is set to default resolution 1024x768, and when I get into gnome I have 1152x864 set up and it works fine. If I set my default xorg.conf resolution to 1152x864 like my gnome, GDM isn't displayed and I have to login blindly. This would no

  • Refresh system matrix

    I have added a user defined field at the row level.I am performing some calculation on this udf in the goods receipt po form.I need to refresh this system matrix after performing calculations.Is it possible to refresh system matrix programatically ?