HTML-DB 1.6 (Apex) Page size and Page Model and monitor size

Hi everyone,
We developed our application based on 17 inches monitor. But, today one user told us that she has a 15 inches monitor. Thus, she don't see full page, she has to use the scroll.
Is it in our model that you can reduce the page size for example 80% size in the page model to fit with 15 inches monitor ?
Or to define a variable in the page model and have two different buttons one for 15 inches monitor (80% page size) and an other related to 17 inches monitor and more (100% page size) this pourcent should be the value of a variable in the page model ?
Thanks. Bye.

Hi Timiche,
The easiest thing to do would be to make sure that the width of items on the page (especially tables) are set to a percentage and not a fixed px value. This way, the items will spread out to fill the available screen width.
You should also bear in mind that users can change the resolution of the screens - 640x400, 800x600, 1024x768 etc. It would become a nightmare to try and cater for all possible resolutions and screen sizes by dynamically changing the fixed width dimensions of all objects on a page! I would check what items need to be of fixed width and change all the rest to percentages.
We tend to inform our users that pages have been designed for a particular resolution - currently 1024x768.
Regards
Andy

Similar Messages

  • I am looking for software that I need to be able to build presentations and varied models and templates with limited knowledge. Any info on software other than Keynote would be appreciated

    I have an apple mac running OS X 10.9
    I used to run software to build various business models: Gant charts, project works, flow diagrams, various organisational charts, etc...
    I really need new software , preferably compatible with windows to forward to my customers not on apple

    If you already have the correct size inserts, and want to be creative, you can easily make your own case template using Pages(part of iWork). I like that because Pages can access photos from iPhoto. I don't have the inserts so I print my case covers to the size needed and cut the paper to fit.

  • Data Modeler - Compare Models and DDL file

    I have been generating DDL files by data dictionary import. In the Compare Models window, the orange triangles with exclamation marks show the tables that are somehow different in database and in my data model.
    That would be very helpful feature, if it didn't notice the kind of information that never goes to database. For example I have used the Notes-field and Table Types and the compare functionality shows that those information are missing in database. In other words, it shows the exclamation marks in every table even if I had changed one table in my model.
    Is there some reason for it to work like this? Or is this going to be fixed in the future?

    Ok, that's good to hear!
    Now I have another thing about DDL that I noticed. I have a sequence in my database that has cache size of 20. I removed the cache size from Data Modeler and made the DDL file with import from data dictionary. The DDL file was empty, so Data Modeler didn't notice that the sequence had changed.

  • Mathematic​a Link for LabVIEW Integrates Design Models and Measuremen​ts

    Mathematica Link for LabVIEW, a new technical computing
    application created by BetterVIEW Consulting, is now available.
    This software bridges National Instruments LabVIEW graphical
    development environment and Wolfram Research Mathematica
    technical computing software to help engineers and scientists
    more easily acquire and analyze measurements throughout all
    phases of the design process.
    Mathematica Link for LabVIEW combines the data acquisition,
    analysis, and graphical user interface capabilities of LabVIEW
    and the modeling and analysis algorithms of Mathematica to speed
    development of custom applications in hundreds of industries,
    from quantum mechanics to automotive. With this software,
    engineers can control a LabVIEW application (Virtual Instrument
    or VI) from Mathematica or access Mathematica from within a
    LabVIEW VI.
    Mathematica Link for LabVIEW features built-in, high-level
    functions for creating a communication path between LabVIEW and
    Mathematica to achieve seamless integration throughout the
    design flow, from the first mathematical model to validating the
    final design. For example, engineers and scientists can easily
    send numeric computations to the Mathematica kernel and return
    results to LabVIEW, visualize LabVIEW data using native
    Mathematica data visualization functions, and create simple, yet
    flexible simulation and control VIs that take advantage of the
    symbolic programming capabilities of Mathematica.
    Integrating two leading technical computing systems like
    Mathematica and LabVIEW brings technical professionals one step
    closer to having the ideal, start-to-finish work environment.
    With Mathematica Link for LabVIEW, entirely new, hybrid
    workflows become possible, thus enabling users to quickly and
    easily find solutions to complex problems--solutions that would
    be difficult, if not impossible, to realize using only one of
    the component packages.
    Mathematica Link for LabVIEW requires Mathematica 4.1 or later
    and LabVIEW 6i or later, and is available for Windows and
    Macintosh platforms. For more information about Mathematica Link
    for LabVIEW, visit:
    http://www.wolfram.com/products/applications/labvi​ew

    Socalledvita-
    What functionality are you looking from the Amplitude and Level Measurement Express VI?  There is not one-one replacement you can use.  However, there are definitely ways of calculating the DC and RMS values of a signal as well as finding the max and min points, etc.  Please be more specific in what you are trying to accomplish.
    Regards,
    Mike S
    NI AE

  • Eeprom address and caldacs model/address for pci-6014 and pci-6733

    I have one pci-6014 and one pci-6733.
    I need to transfer the calibration constants from eeprom to caldacs.
    I search the adrress of the constants in the eeprom and the model and address of che caldacs.
    Tanks

    Hello,
    It seems to be a common mode voltage or ground loop problem.
    When you are sourcing an output signal from your DAQ board, the signal is already grounded, it means that it has already a reference. If you measure this output with a measurement device, which has also a ground, the both ground potential are not necessary equal. This difference is the common mode voltage and influences your measurement (offset).
    Please check the following links to have more detail about grounded signal.
    http://zone.ni.com/devzone/conceptd.nsf/webmain/8D​907374C5E867F186256C640059F30C?opendocument
    http://digital.ni.com/worldwide/france.nsf/webtech​supp/0E6A8D5999CEE1AF8025683C0056A4B1?OpenDocument​&node=163080_f
    Best regards,
    Alexandre D
    National Instruments

  • Limit to HTML Header text in APEX Page

    I have an APEX page that has a fairly large amount of javascript in the HTML header. After I added some more, the page blows up. Is there a limit to how much you can add. It doesn't look like Page 0 has the limitation. Is there one one on either?
    What is the best way around this? Adding the individual page javascript to Page 0 or creating a .js that gets included on that page only.
    Thanks!

    Large page sizes will DESTROY your perceived performance. High performance apps go way out of their way to improve page load times by:
    - Minifying or compressing javasript
    - Making sure it is cache-able
    - Loading the minimum amount of javascript you need for the page to function, then "lazy loading" (background loading) the rest
    - Lazy loading all of the JavaScript files you need for the app on the login page or first page to cache them
    - Using gzip compression in the app server
    - Using a Content Delivery Network (CDN)
    - Reducing HTML size using CSS and other techniques
    - Reducing the number of network requests for images using CSS sprites. (more info here: http://www.smashingmagazine.com/2009/04/27/the-mystery-of-css-sprites-techniques-tools-and-tutorials/ )
    Storing JavaScript in the head of the page flies in the face of almost everyone of those concepts. Have a look at this if you have time:
    http://developer.yahoo.com/performance/
    Tyler Muth
    http://tylermuth.wordpress.com
    "Applied Oracle Security: Developing Secure Database and Middleware Environments": http://sn.im/aos.book

  • FIREFOX 26 changed the 'post crash' page with the list of windows and pages. It was a real HTML page with links for each page. Now it isn't (and blows)

    * You changed the page that comes up after a crash - the one which shows the windows and pages that were up before the
    crash.
    This used to be a real HTML page and it isn't any more. THis choice was pure isiocy consider how peopel used that page every day (try taking to your users for a change).
    The pages listed on that 'post crash page' used to be actual LINKS (you could right click them &
    manually open them in another tab - and most peope DID that every day). You could also (and I did this a lot) drag a second
    copy of the page, into a new tab (to keep track of all the pages I had not wanted to open)
    Now the pages are no longer links. You cannot right-click them.
    The thing in the probser is no longer a page that I can drag into a new tab.
    Roll the version back and throw this one in the bin...and have a good long talk with your developers about the definition of
    'STUPIDITIY'
    Then I try to type anything in the addres bar it is suppose to repoond with the history of old things I have types in the past, or
    search for what I type (and in some cases I think it tyes to convert it intoa URL). However it no longer does any of these
    things. When I type in the ADDRESS BAR ONLY, I do not get all of my letters to appear. I have to type into a notepad or
    into the search and to copy and paste to go to a URL. Nothing that is typed into the address bad responds normally at all
    anymore, and I am fairly certain there are no new addons on this machine at all. It does not matter which things I disable. It
    still does this. W of course points the finger back at a change to FIREFOX. I wich I could just sitct with one stable release
    forever but the MOZILLA folk thing it is best to force peopel awy from a working broswer release to a horrible one (due to it
    being out of date).
    FIREFOX 26.0 has 'issues' (ie new *features*/bugs)
    1) History is no longer accurate. My Proof? This machine is the primary one for the entire family (the only PC working). It is
    logged in with same user every time and never has its history cleared. It now January 7 so I ought to have a list of all of last
    months browing available to me.
    However, according to FIREFOX history, in all of December 2013, the entire family only went to 51 primary URL's. None of
    the official TV sites I use to get episodes are listed. None of the official movie sites I use are listed. The primary URL for
    ebay is not listed. Only 1 out of our 4 weather sites that I use (at least once a week) are listed. Only 1 of our 3 FINANCE
    sites is listed. There ought to be several; hundred root URLs listed.
    Please fix history as this change seriously "blows greasy chunks"
    PROBLEM (a stupid change in the new FIREFOX version)
    FOr a long time, after a crash you got a useful page (a real HTML page) which gave you a list of all of your last sessions
    'winwos and tabs' that were open when the browser crashed. there were certain ways of using this page that are no longer
    able to be done.
    The old method was wonderful as it had this behavior :
    *** The old method for displaying your 'Recovered Tabs' allowed you to :
    a) right click an individual item and open it in a tab without getting rid of that lovely window of your previous session of
    'recovered windows and tabs '.
    2) drag the URL for the entire window of 'recovered windows and tabs ' to a new tab (to make a second copy) so that you
    could select just a few of them to open as a group, and stil have the old list handy.
    You can no longer do either of these things. The 'recovered windows and tabs ' page no longer has links in it and can no longer be dragged, so you cant select a few of them to use, and keep the rest around for later. NOW - once you choose which pages to open the window is gone forever (can can't get a second copy).
    People used to make a copy of the page for later use (with a drag)
    we also used to open pages with a right click (which no longer functions
    This new method seriously blows big greasy chunks. A parge loss in function has occurred.
    Put things back as they were. 26 is full of terrible changes that NOBODY likes. It also has a lot of bugs (history is not reliable at all)

    (1) Firefox's built-in post-crash page has not been a real HTML page for a long time (for example, from the time of Firefox 22, see: [https://support.mozilla.org/en-US/questions/968212 Want to save LOTS of versions of "Restore Session.xht" from the "oops ..." page for later use]). If you had this working differently with Firefox 25, that might have been created by an extension.
    You can check to see whether extensions are disabled or need an update on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. The disabled extensions cluster toward the bottom of the list. To poll for updates, use the "gear" button above the list and choose Check for Updates.
    If you used the Reset feature (or Firefox automatically did a reset due to some problem during upgrading), you will need to reinstall missing extensions. The reset feature creates a folder on the desktop named Old Firefox Data. Do you have that folder? There may be data you can recover from it.
    (2) There are many ways for history to get cleared, both internal to Firefox and external. Could you double-check your Privacy settings?
    orange Firefox button (or Tools menu) > Options > Privacy
    * The "Firefox will" drop-down says Remember History: Firefox shouldn't be clearing history, but an add-on or external software could do it
    * The "Firefox will" drop-down says Use custom settings for history: inspect the "Clear history when Firefox closes" setting to make Firefox isn't set to clear history. Also check your add-ons and consider external software.
    Firefox normally accumulates months of history. However, some of Firefox's database sizes are based on disk space available. If your hard drive is very full, Firefox might reduce the amount of history stored.

  • Made new html page, I cannot find an pactual font size

    Doing DW in a book, Lesson 1 made a html page "two col fixed header footer" There is a text size, an h1, h2 & <p> text size and it is 100% in the body, and 100% in the header, and after lesson #1, it is 90% in the main content, however of what?  I went looking as a  follow-up of the lesson and I
    could not find a reference to an actual size in the css which is in the head. How big is it, where is it established?    

    All web browsers have a default size for text. Putting 100% in the body style rule means "use the browser default for all fonts". Using 90% later simply means "use 90% of the browser default". The actual size depends on the individual browser.

  • How do I change my Pages window and document back to standard size? document?

    My document format has changed and become very narrow.  When I compare it to another Pages document, everything is smaller and the window itself is more narrow with a very large left margin.  It looks like a professional textbook document.  I printed out a few pages and it
    is very small.  The only formatting I have changed - that I can remember - is to introduce heading and body from the Style Drawer.  Otherwise
    I have not played with the margins.
    Hope you can help - maybe Peter from Australia??

    Hi thanks Jerrold and Frøken Hulda,  I think the problem was that I had gone into VIEW ﹥Zoom ﹥and then hit either Out or Actual Size.  I have fixed it now and it looks like it will print better now.  Nevertheless, I don´t understand the difference between "Actual Size" and "Fit Width" or "Fit Page."  The last two make the document appear smaller, but what is the difference?
    Thanks again.

  • In putting together a book I can move photos onto a page and enlarge the picture but is there a way to reduce the picture size? some cases I want a smaller picture and if I change the size of the picture box I only get a portion of the image. I wnt to red

    picture size...in putting together a book I can move photos onto a page and enlarge the picture but is there a way to reduce the picture size? some cases I want a smaller picture and if I change the size of the picture box I only get a portion of the image. I want to reduce the image to fit the size of the box.

    If you right click on the image on the page in the context menu select photo box alignment and then select one of scale to fit {centered, Left-aligned, Right-aligned}
    That should do what you are loking for.

  • I am exporting a Pages document to Epub and Pages is compressing my jpg images.  How do I keep the original jpg size during the export to epub process?

    I am exporting a Pages document to Epub and Pages is compressing my jpg images (I think to 72 dpi from original 600 dpi). 
    How do I keep the original jpg size during the export to epub process?

    We are still trying learn how to use Pages to build ePub documents with high resolution graphics that will expand clearly when they are tapped. Very large screen shots are my example here.

  • Slow Macbook pro, ~1 year old;  Really HUGE Page Ins and Page Outs size, think 400 GB In vs 100 GB Out

    Hi everyone, I have a macbook pro and it's so slow.  After scouring the internet a lot, and CCleaning my computer 359802 times and using Onyx, I finally realized why it's so s low.....my Page Ins and Page Outs are so big.  I have attached a screenshot that illustrates this.
    I am not sure how my computer ballooned to this size, but it makes sense why it's like a turtle and is slower than my 4 year old Sony. 
    Can someone help me?? I am not sure what processes to get rid of and I feel like Google Chrome is taking up huge amounts of my Ram.  I mean yeah I open Google Chrome and run like 8 tabs and have Word and iTunes open, but my 4 years old Sony could run faster than this and I used to open like 12+ tabs on Chrome while running Word, Excel, Powerpoint, iTunes, and VLC on my Sony.  Which was nowhere near as powerful as this computer.  Supposedly.
    My computer Specs are:
    2.3 GHz Intel Core i5
    4 GB 1333 MHz DDR3 RAM
    Intel HD  Graphics 384 MB
    Mac OS X Lion 10.7.4
    I would really appreciate any advice to get this down to normal.....since I hear most ppl have page ins and page outs in the MB or even KB.  Right now I'm running Google Chrome, Word, Ppowerpoint, iTunes, and Adobe PDF Reader.  I don't think this should be too unreasonable of work load.
    Thank you

    The problem is not that your page ins are big, as that value resets when you reboot the system. However, your page outs are are almost 25% of your page ins, which means you can use more memory for the applications you run.  A page out is done when memory is full, and the system needs to add something else to memory, so it writes some memory to the hard drive to make room.  The guideline to add more memory is 10% to 15% page outs greater than page in's, and yours are more than that.
    Your MacBook Pro can handle up to 16GB of memory. You might want to consider upgrading to 8GB, which would double what you have today. OWC and Crucial are two sources for quality memory. $42 for 8GB from Crucial, and you can usually find a % off coupon on retailmenot.com.

  • When I 'm in the process of surfing or researching the pages seem to start roaming and change format visually; by font size or screen size, sometimes by page;

    "I'm {oleave nline) or attempting to sign on, the screen shows a symbol of sorts and the screen changes in size or shape. Not like a magnifying glass, but similar; other times when I'm viewing a page, it's as thought someone is controlling the movement of the text on the page or scrolling the page for me. When I try to get the control back, it sometimes clears the screen. I believe people play with their ability to override our processes, especially since everything we do is monitored anyway. In the meantime it concerns me that someone maybe shadow-stroking or engaging my emails and processes; if they are trying to investigate something I wish they would get it over with, this is exactly the kind of interference I'm talking about, LEAVE MY STUFF ALONE! I was keying down on this line and the cursor jumped between the word online
    "Is it possible to speak live to someone?"

    What you are experiencing is 100% related to Malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • HTML-DB 1.6 (Apex) in a JavaScript - affect a value to a field in my page

    Hi everybody,
    Is it possible to affect a value to a field in my page ?
    <script language="JavaScript1.1" type="text/javascript">
    function message()
    &P32_MESSAGE1. = 'It's a new message';
    </script>
    Thanks. Bye.

    Yes, that's what javascript is all about, making the page more interactive before the page is submitted back to the server. In addition to changing values you can change the appearance of the page, showing and hiding pieces and parts in response to user actions.
    One thing you have to do to start using javascript with ApEx is to switch mindset from the ApEx item naming standards to the javascript methods for referring to those items. For instance, instead of &32_MESSAGE_1. as in your example, you might do something like:
    function setMessage() {
    var e = html_GetElement('P32_MESSAGE_1');
    var e_value = e.value;
    if (e_value == '') {
    e.value = 'My new value';
    Many things are possible with javascript. There are lots of good examples on some of the frequent poster's sites, like Carl Backstrom and Vikas. Have fun.
    Earl

  • Apex tab and page display query

    I am using Apex 4.1
    I have the following tabs set up.
    Home, Tab 1,Tab 2 and so on
    The home page is fine. Now the query is with regard to Tab 1. I need it to display Page 3 or Page 4 based on the location of APP_USER
    The region details are all stored in the table : employee_info
    How can I check or display Page 3 if the Region is APAC and Page 4 if EMEA(APAC and EMEA being values in table)
    Is there some way how I can set or achieve this? The default page I have set is as of now Page 3 but it has to pick Page 3 or 4 based on region value from employee table.
    Any guidance will be appreciable.
    Thanks,
    Swetha

    LKSwetha wrote:
    I am using Apex 4.1
    I have the following tabs set up.
    Home, Tab 1,Tab 2 and so on
    The home page is fine. Now the query is with regard to Tab 1. I need it to display Page 3 or Page 4 based on the location of APP_USER
    The region details are all stored in the table : employee_info
    How can I check or display Page 3 if the Region is APAC and Page 4 if EMEA(APAC and EMEA being values in table)
    Is there some way how I can set or achieve this? The default page I have set is as of now Page 3 but it has to pick Page 3 or 4 based on region value from employee table.
    Any guidance will be appreciable.Create 2 copies of Tab 1, one for page 3 and the other for page 4. Display them conditionally according to the user region.

Maybe you are looking for

  • How to find out who is using the shared library?

    Is there a way to find out who is listening to my music on my shared library and what they are listening to?

  • Step by Step method to create a process chain in SAP BI

    HI There, I'm new to SAP BI, can anyone pleas explain me why we need to use Process Chains in a simpler way? Also it would be great if someone can give me step by step description for creating process chain. I've seen couple of PDF files but they con

  • Error while loading data into application

    I have created new application successfully. Loaded LCM backup successfully. Imported all the rules successfully. While loading data in plan1 through Essbase Administrator Services. i got this error: "Parallel dataload enabled: [1] block prepare thre

  • Fog around the lens in Camileo X-Sports

    I'm very carefull to load the camera at home and even add a dry "moisture pad" in the camera but after a few minutes (5) in the sun I get a fog circle just around the lens. I have to open the case each time. This part of the camera becomes warm and I

  • How to install Roxio Toast 11 Titanium in OSX 10.7

    Hi! I just purchased Roxio Toast 11 Titanium and I would like to know the best way to install this on my Mac. My graphics card is an ATI Radeon HD 4670, which is not one of the cards supported to use Toast's VideoBoost, only NVIDIA cards are supporte