Can I use css3 in apex 4.

I'm new to apex... Myself I don't know good css... But in trying to find out...
Can I use css3 in apex 4... Database 11g xe

941005 wrote:
I'm new to apex...

Welcome to the forum: Please read the FAQ and the forum threads sticky (if you have not already done so) and make sure that you have updated your profile with a real handle instead of '941005 '.

You will get a faster, more effective response to your questions including information as much information as possible from the outset. This should include:

  • Version of the APEX
  • Edition and version of DB
  • (EPG, SST or APEX listener) Web server architecture
  • Browser (s) used
  • Theme
  • Templates
  • Type of zone

    Myself I don't know good css... But in trying to find out...
    Can I use css3 in apex 4... Database 11g xe

    In the APEX of all aspects of an application (including font size) are controlled using a combination of (X) HTML and CSS by themes and templates. You need to have an understanding of these web technologies to make the best use of the APEX. If you are not familiar with them, you are advised to get at least a basic knowledge by spending some time in the tutorials here: start with HTML, XHTML, CSS, Javascript and the HTML DOM.

    Features CSS3 can certainly be used in your applications and themes of the APEX. All problems are not likely to land here, but to know if these features are supported by the browsers/versions used during execution of their. These sites can be useful to determine it is worth it for you to use CSS3 to implement a particular feature:

    http://www.impressivewebs.com/CSS3-browser-support/

    http://caniuse.com/

    Using progressive enhancement techniques will allow you to introduce CSS3 features for browsers that support them all by always accessible to those who are not applications.

  • Tags: Database

    Similar Questions

    • can we use DIV instead of tables in the APEX

      Morning friends,

      can we use < div > instead of using tables in the APEX. If so, let me know da procedure. Please make me understand in layman's term, as I just started learing APEX.

      Greetings
      Jean francois

      As I said in the first line of my first post:

      Yes, you can. You must do this in page templates, region or report on shared components of the request of the manufacturer.

      If you look at, you'll see the models and all the table tags HTML. I would say that you copy a model at a time and work with your copy so that you don't the hose upward standard Apex stuff.

      Earl

      Published by: Earil on April 9, 2009 08:57

    • ORDS3.0EA can be used in a production environment

      Hello:

      I had planned to launch a project to deploy a Web service with ADR 2.0 and probably with Apex.

      But now ORDS3.0 EA was released. I can deploy without apex, and it has a function to simply deploy webservice.

      So now I need to decide whether to use ORDS2.0 or 3.0 in my project.

      EA can be used in a production environment? Can the project to have a month or two for the kickoff, if I have a question in the EA version, I raise a SR on EA version?

      Please consult the readme.html in the distribution, as he says it, EA builds are NOT supported for production use

    • [SQL] Tuning why he can't use indexes?

      Here's a SQL that cannot use indexes

      SELECT T.FID FID,

      t.cfsignState SIGNSTATE,

      T.FNUMBER WBNUMBER,

      T1. CFCUSTOMERTRANSNUMBER CUNUMBER,

      T2. CFCOMPANYNAME CUSTOMERNAME,

      T.CFATTACHMENTFILE ATTFILE,

      T.CFATTACHMENT ATT

      OF CT_OPE_SIGNBILL T

      LEFT OUTER JOIN CT_OPE_WAYBILL T1

      ON T1. FID = T.CFWAYBILLID

      LEFT OUTER JOIN T2 CT_MAR_CUSTOMER

      ON T2. FID = T1. CFCUSTOMERID

      WHERE ((T.FNUMBER ('1410582816' N)) OR (T1.) CFCUSTOMERTRANSNUMBER (N '1410582816')));

      Elapsed time: 00:00:12.15

      Execution plan

      ----------------------------------------------------------

      Hash value of plan: 2925502694

      ------------------------------------------------------------------------------------------------------------------------

      | ID | Operation | Name | Lines | Bytes | TempSpc | Cost (% CPU). Time | Pstart. Pstop |

      ------------------------------------------------------------------------------------------------------------------------

      |   0 | SELECT STATEMENT |                 |     2.   420.       | 48996 (3) | 00:01:16 |       |       |

      |   1.  NESTED EXTERNAL LOOPS |                 |     2.   420.       | 48996 (3) | 00:01:16 |       |       |

      |*  2 |   FILTER |                 |       |       |       |            |          |       |       |

      |*  3 |    EXTERNAL RIGHT HASH JOIN |                 |     2.   310.    67 M | 48995 (3) | 00:01:16 |       |       |

      |   4.     RANGE OF PARTITION ALL THE |                 |  1241K |    53 M |       | 36422 (3) | 00:00:57 |     1.    63.

      |   5.      TABLE ACCESS FULL | CT_OPE_WAYBILL |  1241K |    53 M |       | 36422 (3) | 00:00:57 |     1.    63.

      |   6.     TABLE ACCESS FULL | CT_OPE_SIGNBILL |   907K |    95 M |       |  8217 (5) | 00:00:13 |       |       |

      |   7.   TABLE ACCESS BY INDEX ROWID | CT_MAR_CUSTOMER |     1.    55.       |     1 (0) | 00:00:01 |       |       |

      |*  8 |    INDEX UNIQUE SCAN | PK_MAR_CUSTOMER |     1.       |       |     1 (0) | 00:00:01 |       |       |

      ------------------------------------------------------------------------------------------------------------------------

      Information of predicates (identified by the operation identity card):

      ---------------------------------------------------

      2 - filter("T".") FNUMBER ' = U ' 1410582816 "OR 'T1'. '. CFCUSTOMERTRANSNUMBER '= U '1410582816')

      3 - access("T1".") IDF"(+) ="T ". ("' CFWAYBILLID")

      8 - access("T2".") IDF"(+) ="T1 ". ("' CFCUSTOMERID")

      Statistics

      ----------------------------------------------------------

      1 recursive calls

      19 db block Gets

      234698 compatible Gets

      191546 physical reads

      0 redo size

      1035 bytes sent via SQL * Net to client

      524 bytes received via SQL * Net from client

      2 SQL * Net back and forth to and from the client

      0 sorts (memory)

      0 sorts (disk)

      1 rows processed

      but, if I rewrite it as below, it can use indexes

      SELECT T.FID FID,

      t.cfsignState SIGNSTATE,

      T.FNUMBER WBNUMBER,

      T1. CFCUSTOMERTRANSNUMBER CUNUMBER,

      T2. CFCOMPANYNAME CUSTOMERNAME,

      T.CFATTACHMENTFILE ATTFILE,

      T.CFATTACHMENT ATT

      OF CT_OPE_SIGNBILL T

      LEFT OUTER JOIN CT_OPE_WAYBILL T1

      ON T1. FID = T.CFWAYBILLID

      LEFT OUTER JOIN T2 CT_MAR_CUSTOMER

      ON T2. FID = T1. CFCUSTOMERID

      WHERE ((T.FNUMBER (N '1410582816')))

      Union

      SELECT T.FID FID,

      t.cfsignState SIGNSTATE,

      T.FNUMBER WBNUMBER,

      T1. CFCUSTOMERTRANSNUMBER CUNUMBER,

      T2. CFCOMPANYNAME CUSTOMERNAME,

      T.CFATTACHMENTFILE ATTFILE,

      T.CFATTACHMENT ATT

      OF CT_OPE_SIGNBILL T

      LEFT OUTER JOIN CT_OPE_WAYBILL T1

      ON T1. FID = T.CFWAYBILLID

      LEFT OUTER JOIN T2 CT_MAR_CUSTOMER

      ON T2. FID = T1. CFCUSTOMERID

      WHERE ((T1. CFCUSTOMERTRANSNUMBER (N '1410582816')));

      Elapsed time: 00:00:00.02

      Execution plan

      ----------------------------------------------------------

      Hash value of plan: 2215743926

      -----------------------------------------------------------------------------------------------------------------------------------

      | ID | Operation | Name                     | Lines | Bytes | Cost (% CPU). Time | Pstart. Pstop |

      -----------------------------------------------------------------------------------------------------------------------------------

      |   0 | SELECT STATEMENT |                          |     2.   420.    11 (64) | 00:00:01 |       |       |

      |   1.  UNIQUE FATE |                          |     2.   420.    11 (64) | 00:00:01 |       |       |

      |   2.   UNION-ALL |                          |       |       |            |          |       |       |

      |   3.    NESTED EXTERNAL LOOPS |                          |     1.   210 |     4 (0) | 00:00:01 |       |       |

      |   4.     NESTED EXTERNAL LOOPS |                          |     1.   155.     3 (0) | 00:00:01 |       |       |

      |   5.      TABLE ACCESS BY INDEX ROWID | CT_OPE_SIGNBILL |     1.   110.     2 (0) | 00:00:01 |       |       |

      |*  6 |       INDEX RANGE SCAN | IDX_CT_OPE_SIGNBILL_IT01 |     1.       |     1 (0) | 00:00:01 |       |       |

      |   7.      TABLE ACCESS BY INDEX ROWID | CT_OPE_WAYBILL |  1241K |    53 M |     1 (0) | 00:00:01 | ROWID | ROWID |

      |*  8 |       INDEX UNIQUE SCAN | CPK_OPE_WAYBILLBP7 |     1.       |     1 (0) | 00:00:01 |       |       |

      |   9.     TABLE ACCESS BY INDEX ROWID | CT_MAR_CUSTOMER | 25598 |  1374K |     1 (0) | 00:00:01 |       |       |

      | * 10 |      INDEX UNIQUE SCAN | PK_MAR_CUSTOMER |     1.       |     1 (0) | 00:00:01 |       |       |

      |  11.    NESTED LOOPS |                          |     1.   210 |     5 (0) | 00:00:01 |       |       |

      |  12.     NESTED EXTERNAL LOOPS |                          |     1.   100.     4 (0) | 00:00:01 |       |       |

      |  13.      TABLE ACCESS BY INDEX ROWID | CT_OPE_WAYBILL |     1.    45.     3 (0) | 00:00:01 | ROWID | ROWID |

      | * 14 |       INDEX RANGE SCAN | IDX$ $_47CB0003 |     1.       |     2 (0) | 00:00:01 |       |       |

      |  15.      TABLE ACCESS BY INDEX ROWID | CT_MAR_CUSTOMER |     1.    55.     1 (0) | 00:00:01 |       |       |

      | * 16.       INDEX UNIQUE SCAN | PK_MAR_CUSTOMER |     1.       |     1 (0) | 00:00:01 |       |       |

      |  17.     TABLE ACCESS BY INDEX ROWID | CT_OPE_SIGNBILL |     1.   110.     2 (0) | 00:00:01 |       |       |

      | * 18.      INDEX RANGE SCAN | IDX$ $_47C30001 |     1.       |     1 (0) | 00:00:01 |       |       |

      -----------------------------------------------------------------------------------------------------------------------------------

      Information of predicates (identified by the operation identity card):

      ---------------------------------------------------

      6 - access("T".") FNUMBER "= U '1410582816')

      8 - access("T1".") IDF"(+) ="T ". ("' CFWAYBILLID")

      10 - access("T2".") IDF"(+) ="T1 ". ("' CFCUSTOMERID")

      14 - access("T1".") CFCUSTOMERTRANSNUMBER '= U '1410582816')

      16 - access("T2".") IDF"(+) ="T1 ". ("' CFCUSTOMERID")

      18 - access("T1".") IDF '=' T '. ("' CFWAYBILLID")

      Statistics

      ----------------------------------------------------------

      1 recursive calls

      0 db block Gets

      Gets 11 coherent

      0 physical reads

      0 redo size

      1035 bytes sent via SQL * Net to client

      524 bytes received via SQL * Net from client

      2 SQL * Net back and forth to and from the client

      1 sorts (memory)

      0 sorts (disk)

      1 rows processed

      SQL >

      My Question is why the first statement cannot use indexes? What is its mechanism?

      as Maria Colgan explains in his commentary on https://blogs.oracle.com/optimizer/entry/or_expansion_transformation: "since OR expansion is a transformation focused on costs, it cannot always take place." It cannot take place, then it can be forced by using the indicator, USE_CONCAT. "Fundamentally OR expansion is

      a transformation that can be used to optimize the disjunctive queries (queries that contain clauses of GOLD). The basic idea of in the expansion of the GOLD is to transform a query containing the disjunctions in the form of a query UNION ALL of two or more branches. This is done by dividing the disjunction in components and by associating each component with a branch of a query UNION all.

      So, you can use the USE_CONCAT flag to check if OR expansion is an option at all for the optimizer in your example. The strategy itself is quite old and mentioned by Tom Kyte in https://asktom.oracle.com/pls/apex/f?p=100:11:0:P11_QUESTION_ID:921229345078.

    • Can I use the SQL function while setting of passage in the links?

      4.2.1

      Hello

      I have a report that is a hypertext link (using the column binding feature standard apex) to another page. One of the parameters (columns) I spend is a varchar column with & values. Now, there is a restriction on the passage, & in the apex in 4.2.1. I was wondering if we can use something as a replacement (COLUMN1 # #, ' & ','-')) in the connection settings?

      Unfortunately, the column does not have an equivalent id that can be used.

      All of the suggestions.

      Thank you
      Ryan

      ryansun wrote:
      4.2.1

      Hello

      I have a report that is a hypertext link (using the column binding feature standard apex) to another page. One of the parameters (columns) I spend is a varchar column with & values. Now, there is a restriction on passage and in the apex in 4.2.1. I was wondering if we can use something like a replace(#COLUMN1#,'&','-')) in the connection settings?

      Unfortunately, the column does not have an equivalent id that can be used.

      All of the suggestions.

      Thank you
      Ryan

      You can create another field in your query that might contain the value "prepared" - you set this to be a hidden column in the report definition and use it in the URL.

    • APEX_ITEM can be used to generate a form page?

      Hello

      I would use APEX_ITEM to generate in APEX 4.0 a form region at run time, based on metadata tables that describe the columns, the labels, the types of data etc...

      It seems that people use APEX_ITEM for production as an update and I'm starting to question my original concept. I created a region of anonymous PL/SQL block, which contains the following code segment:

      () HTP.p
      APEX_ITEM. SELECT_LIST)
      3,
      « Y »,
      ' Yes; Y, no.; NO,.
      « Y »,
      '',
      '',
      "readonly = readonly',"
      "P1_MARRIED,"
      'Mary '.
      )
      );

      When I run my form and click my link of "Session" at the botom of the page, the item of P1_MARRIED would not appear in the list of elements on the page. Am I missing something, or this concept to "Generate a form region to the execution" is based on my missunderstanding of APEX_ITEM API?

      Best regards, Tamas

      When I run my form and click my link of "Session" at the botom of the page, the item of P1_MARRIED would not appear in the list of elements on the page. Am I missing something, or this concept to "Generate a form region to the execution" is based on my missunderstanding of APEX_ITEM API?

      It is not possible to dynamically generate page APEX elements.

      apex_item API methods can be used in reports and PL/SQL areas to render the controls on the page, but these do not exist as part of the page. These controls to submit their values in a different way, using associative arrays, defined in the apex_application and validation package and their treatment is different from the page elements. See tables referring to the QAnywhere APEX for more information on how to access the values of the objects created using the apex_item methods. These values in table not stored permanently in session state in the same way as page elements and are therefore not available in the State of Session pop up.

      The parameter p_item_id in apex_item API methods generates an attribute ID idHTML to CSS, jQuery, or DOM selector in the rendered page. It doesn't help (and cannot be referenced or accessed) on the server side.

      In short: Yes, apex_item peut be used to generate a form page, but the result is not a form page with page APEX elements.

    • Can I use run immediately "to process_point on submit '.

      Hello friends,

      In oracle apex 3.2.1 Oracle 11g.

      can I use the following instructions as given below


      immediately execute stmt in var_datatype;

      to process_point 'submit immediately after calculations and validations'.

      I get the following error:

      ORA-00936: lack of expression


      Thanks for giving me another approach if this is not possible. I got to run the select statement!


      Thank you/kumar

      Published by: kumar73 on April 26, 2010 10:35

      Hello

      This isn't a problem of EXECUTE IMMEDIATE
      CHAI table in your application is the analysis of schema?

      You can try the query from all_tab_columns where you can select also from an owner as

      SELECT DATA_TYPE FROM ALL_TAB_COLUMNS WHERE COLUMN_NAME = 'EVNDRIVE' and TABLE_NAME = 'CHAI' and OWNER = 'MY_SCHEMA'
      

      BR, Jari

    • I have a lg 4 k tv (40 "40UH630V TV LG ULTRA HD 4 K) with HDMI 2. 0 and if I buy apple tv 4 can be used with HDMI 2. 0 port or do I HDMI 3 port to use this? Please help me

      I have a lg 4 k tv (40 "40UH630V TV LG ULTRA HD 4 K) with HDMI 2. 0 and if I buy apple tv 4 can be used with HDMI 2. 0 port or do I HDMI 3 port to use this? Please help me

      You can use it with your TV.

    • Can I use the Time Capsule wireless for multiple computers without using it as a router?

      I am looking for an external backup for 2 computers drive.  I have a desktop iMac and MacBook Air.  I like the idea of being able to back up my MacBook Air wireless, but I need to make sure that it will work the way I need to.

      I already have a wireless router that works well for me, I don't need the time Capsule to act as a router. I'm just needing a wireless backup drive.  So, the question is, can I use the only time Capsule as a storage device for backup of wifi or do I also have to use it as a wifi router?  My fear is that the router service is not as good as the router, I currently have.  I live in a big House of 2 floors, making it very difficult to receive a strong signal throughout the House.

      can I use time Capsule only as a backup wireless storage device or do I also have to use it as a wifi router?

      Time Capsule need to connect to your router/modem existing using wired Ethernet wired, permanent.

      If you plan to use the time Capsule to back up your Mac with the help of the application Time Machine on every Mac, the Mac will have to save on the wireless signal Time Capsule for the process to be officially supported by Apple.

      While it is possible to turn off wireless on the Time Capsule and try to save it to your existing wireless network... and it pourrait work... but there will be no Apple support backup problems... so it would be a good idea to plan to use Time Capsule wireless backup purposes.

    • opportunity iPhone 6, app store is in Korean, so I can't use it

      I just bought an iPhone used 6 and synced it with my iCloud... but when I try to use the App store, it's all in Korean so I can't use it.  I have to clear the phone and start from scratch?

      Hello

      The seller should take the steps described in the following article management before selling the iPhone for you, including clear and, if it was enabled, removing lock Activation:

      If they have not cleared the iPhone, you should do before asking for yourself as the new owner.

      If Activation lock remains active under Apple ID from the previous owner, you should arrange for them to remove the lock or return the iPhone for a refund:

      Find my iPhone Activation Lock - Apple Support

      Turn off find my iPhone Activation Lock - Apple Support

    • Can I use the search feature to locate my ipod classic (stolen)?

      My ipod classic (I have the serial number) that I bought in 2007, was stolen from my room, Marriott Seattle Waterfront.  Can I use find it my ipod have a this old?

      N ° this feature works only with Apple iOS (iPhone, iPad and iPod touch) devices that have a direct connection to the Internet.

    • Can I use time capsule as external hard drive?

      Can I use time capsule as external hard drive so that I can access a file or a specific folder by searching for its name?

      A TC is now and for always player network... no external. So there are limits to its use.

      If you are multitasking your TC with Time Machine and then using a DMG file as a virtual drive is better than directly copy files... However sharing becomes impossible. One person at a time can open the DMG.

      See pondini. T3 http://pondini.org/TM/Time_Capsule.html

      Old but still interesting to read.

      You can certainly create a folder on the TC and copy your files on it, and then perform a search. Research is slow on wireless is so the speed of transfer of large files. With the help of ethernet is certainly encouraged to desktop computers.

      Sharing folders on the TC is also now more difficult with increasing security at El Capo and OS later. You do not create on the computer records are not available. And even the ones you create can occasionally and autonomous change permissions (since the TC controls drive not the computer), you lock your own files on... I answer these questions once a week.

      Not all software on Mac supports using network drives. The most difficult is photos that can corrupt the library due to disconnections... which are the most common wireless. Be warned backups are important and not easy to do because of the slowness of the USB port on the TC and you end up really need to another location on the network for backup on.

      Generally, I advise the people not not to use the TC for direct files... That is to say, if you edit a document, make sure that it is on a local drive... When you have finished the document, you can copy it to the network drive and delete the local version. Easy for... not so easy documents for photos with major libraries.

      A TC cannot save itself and Time Machine backup impossible network drives... This means that no backup will be your files in the TC, unless you take the initiative and do it.

    • Can I use 10W with my iPhone charger 5

      I just bought an IPad 2 Air. Can I use the charger 10W with my other devices like the iPhone 5?

      Yes you can.

    • can I use both yosemite and windows do l need to download paralells

      Can I use windows and yosemite on book mac pro, l need to download parallels?

      You can install Windows using Boot Camp Assistant or using a virtual machine, Parallels, Fusion, or VirtualBox.

    • I have an old Mac Mini with a DVI Port that came with a VGA DVI-adapter.  Tonight, my monitor went down.  Brand new monitor works with that?  Can I use an adapter?  If yes should which adapter I?

      I have an old Mac Mini with a DVI Port that came with a VGA DVI-adapter.  Tonight, my monitor went down.  Brand new monitor works with that? Any recommendations? Can I use an adapter?  If yes should which adapter I?

      You can use any DVI monitor DVI port directly or have any VGA monitor with the power that you adapter. A HDMI monitor might work with an adapter DVI to HDMI in a pinch, but HDMI tends to be more fickle.

    Maybe you are looking for

    • 15 - n068el windows 7 x 64 drivers

      Please, help me to find drivers for windows 7 x 64, because I don't like windows 8!

    • How can I send mail to groups of contacts

      How to send mail to a whole group without entering each address individually. My contacts has groups already and there used to be a way to do in previous versions by clicking the 'contacts' icon But now I can't find another thing the sign in a circle

    • DLL Interop.LabVIEW

      Where can I get a copy of the DLL Interop.LabVIEW for use with c#, or do I have to write my own?

    • What are the available combinations of Fn keys

      Hello! I'm new on the HP Forum and I need your expert advice. I have a HP Pavilion zv6000 laptop and I use of the fn key. Initial information that I thought the fn + 17 combination decreases the brightness of the screen. What fn combo will increase t

    • Black screen PCoIP

      I know that this issue was raised a lot and many solutions have been provided. But non of them helped me. Here's my network diagram:1. in the case with direct VPN static to the remote site, everything works fine. I can connect to the Thin Client (10.