Standard Apex 5 column

Hi, what happened to the Standard column designation in parts of report?  If I want to return dynamic html based on a feature in my article, I now have only the ability to display in the form of a text column that displays the literal html text.  I can use the settings of the HTML Expression to handle most of the cases, but is not encourage re-use.  I prefer to call a central function in my area of sql for some common display formats that we use.  Also, if I would use the formatting based on the value of the column, such as the colors of different background based on a value, it seems that I am obliged to resort to a javascript loading the page rather than made me directly to the page from the backend.

Am I missing something?

Thank you

Hi Nathan Rooney-Oracle,.

Check out the following threads on the same issue:

Kind regards

Kiran

Tags: Database

Similar Questions

  • 5 interactive Apex reports column dress white-space: nowrap

    before the apex 5 with the text of the header as follows, prevents the column packing. This does not work in 5 APEX, y at - it alternative workaround to avoid column wrap in apex 5 IR?

    < style type = "text/css" >

    } table.apexir_WORKSHEET_DATA_td {white-space: nowrap ;}}

    < / style >

    Johnny wrote:

    before the apex 5 with the text of the header as follows, prevents the column packing. This does not work in 5 APEX, y at - it alternative workaround to avoid column wrap in apex 5 IR?

    Interactive report markup has been completely redesigned in APEX 5.0 to support more than one IR per page, which means that all the old CSS and JS customizations will stop working. APEX 5.0 equivalent is to use the following style sheet in CSS Inline property page:

    .a-IRR-table td {
      white-space: nowrap;
    }
    
  • How to get the value of the interactive report into apex 5 column

    Hello

    I want to create the master detail report with ajax.

    If I want to get the value of a specific column of interactive report when click on one line and has a value of element of selected row column value.

    Then use the elements of value to refresh the details report.

    You have a better idea to refresh the report Details according to select line of the master report without refreshing the whole page?

    Hi SYSMAN2007,

    SYSMAN2007 wrote:

    I want to create the master detail report with ajax.

    If I want to get the value of a specific column of interactive report when click on one line and has a value of element of selected row column value.

    Then use the elements of value to refresh the details report.

    You have a better idea to refresh the report Details according to select line of the master report without refreshing the whole page?

    You can do this with the help of dynamic action. You need to get the value of the column of a line click in IR (using jQuery) and set the value to the elements which, in turn, can be used as a filter to other reports on the same page.

    See: How to use the values in the columns of an interactive report (Apex 5)

    Can you reproduce your problem on apex.oracle.com and share the credentials of the workspace, so that I can demonstrate how this can be achieved.

    See an example of how it can be done with dynamic actions: https://apex.oracle.com/pls/apex/f?p=35467:5

    Kind regards

    Kiran

  • Standard report &amp; Image column

    Hello world

    I have a standard report for employees in this report there is a column of image showing the photo of the employee.
    Of course, if there is no image in the database for the employee report does not display anything.
    What I want is that if the image column is ZERO the report will display a standard NO_PHOTO. JPG image for this employee... is this possible?
    My select statement is simple:
     
    select 
           "EMP_ID", 
           "EMP_FIRST_NAME", 
           "EMP_SECOND_NAME", 
           "EMP_FAMILY_NAME", 
           dbms_lob.getlength("EMP_PHOTO") "EMP_PHOTO" 
    from   "T_EMPLOYEE" 

    One method is to use a dynamic Action to insert the image by default when there is not in the report. This avoids having to change the attributes or report queries.
    H4. When

    Event: After refresh
    Selection type: region
    Region:

    H4. Real Action

    Action: Run the JavaScript Code
    Fire on loading the Page: Yes
    Code:

    $('#emp-report td[headers="PHOTO"]')
      .contents()
      .filter(function() {
        return this.nodeType === 3; // report cell contents is a text node, not an img element
      })
      .replaceWith('No photo');
    

    Another is to put the logic in the query and get the source for the image programmatically:

    select
           "EMP_ID",
           "EMP_FIRST_NAME",
           "EMP_SECOND_NAME",
           "EMP_FAMILY_NAME",
              '' || nvl2(photo,  ' "EMP_PHOTO"
    from   "T_EMPLOYEE"
    

    Where P2_PHOTO_FILE is the file browser used to transfer the photos.

    The column attribute display as for the column EMP_PHOTO must be replaced with Standard column of report when you use this method.

  • Report interactive apEx - line column break?

    Hello
    I use ApEx 4 and in the application created the interactive reports page. In the column "Telefon_direktni" is display phone number in the format (0xx) xxx - xxx (phone number for Croatia). When I enter the phone number, I get just 9 digits, so the SQL select query put () and - in the report results. When I have 2 phone numbers I just enter 18 digits, then select request divide number in format (0xx) xxx - xxx, (0xx) xxx - xxx. But my problem is... result interactive report for 2 phone numbers it looks like this:

    (0xx) xxx - xxx, (0xx)
    xxx - xxx

    I want thet result looks like this:

    (0xx) xxx - xxx,.
    (0xx) xxx - xxx

    How can I put line breaks in a select query after ',' it seems I want.

    This is my select statement:
    select
    case when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI like('_1%') and length(LR.TELEFON_DIREKTNI) < 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,2)||') '||substr(LR.TELEFON_DIREKTNI,3,3)||'-'||substr(LR.TELEFON_DIREKTNI,6,4)
                  when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI like('_1%') and length(LR.TELEFON_DIREKTNI) > 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,2)||')'||substr(LR.TELEFON_DIREKTNI,3,3)||'-'||substr(LR.TELEFON_DIREKTNI,6,4)||',      '||'('||substr(LR.TELEFON_DIREKTNI,10,2)||') '||substr(LR.TELEFON_DIREKTNI,12,3)||'-'||substr(LR.TELEFON_DIREKTNI,15,4)
                  when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI not like('_1%') and length(LR.TELEFON_DIREKTNI) < 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,3)||') '||substr(LR.TELEFON_DIREKTNI,4,3)||'-'||substr(LR.TELEFON_DIREKTNI,7,3)
    when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI not like('_1%') and length(LR.TELEFON_DIREKTNI) > 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,3)||')'||substr(LR.TELEFON_DIREKTNI,4,3)||'-'||substr(LR.TELEFON_DIREKTNI,7,3)||', ('||substr(LR.TELEFON_DIREKTNI,10,3)||') '||substr(LR.TELEFON_DIREKTNI,13,3)||'-'||substr(LR.TELEFON_DIREKTNI,16,3)
                  end as TELEFON_DIREKTNI
    Published by: user10410320 on March 30, 2011 10:14

    Try:

    select
    case when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI like('_1%') and length(LR.TELEFON_DIREKTNI) < 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,2)||') '||substr(LR.TELEFON_DIREKTNI,3,3)||'-'||substr(LR.TELEFON_DIREKTNI,6,4)
                  when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI like('_1%') and length(LR.TELEFON_DIREKTNI) > 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,2)||')'||substr(LR.TELEFON_DIREKTNI,3,3)||'-'||substr(LR.TELEFON_DIREKTNI,6,4)||',
    ('||substr(LR.TELEFON_DIREKTNI,10,2)||') '||substr(LR.TELEFON_DIREKTNI,12,3)||'-'||substr(LR.TELEFON_DIREKTNI,15,4) when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI not like('_1%') and length(LR.TELEFON_DIREKTNI) < 10 then '('||substr(LR.TELEFON_DIREKTNI,1,3)||') '||substr(LR.TELEFON_DIREKTNI,4,3)||'-'||substr(LR.TELEFON_DIREKTNI,7,3) when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI not like('_1%') and length(LR.TELEFON_DIREKTNI) > 10 then '('||substr(LR.TELEFON_DIREKTNI,1,3)||')'||substr(LR.TELEFON_DIREKTNI,4,3)||'-'||substr(LR.TELEFON_DIREKTNI,7,3)||',
    ('||substr(LR.TELEFON_DIREKTNI,10,3)||') '||substr(LR.TELEFON_DIREKTNI,13,3)||'-'||substr(LR.TELEFON_DIREKTNI,16,3) end as TELEFON_DIREKTNI

    Although I don't think it's a good way to store/format multiple phone numbers.

  • Oracle Apex Interactive report missing filter column header information?

    Hello

    I use Oracle Apex 4.2, on Internet Explorer 9. I created an interactive report based on the views created in the database (11 g, version 11.2.0.1.0) oracle (workspace = database schema) I use the value of rownum to act as a key to identify the different lines.

    Whenever I try to find the information of one of the column headers for the interactive report (number), I'm not able to find the line, but when I try the same search for "action bar" at the top I am able to see the desired results. That is true of the SQL Developer so know if enter the same information in the filter of the columns, I see the corresponding lines.

    Y at - it an explanation for this behavior?

    Thank you

    Harry

    Hello

    This is a limitation of APEX. Column header filters in IR displayed first 999 distinct values in the ascending (after the application of all the IR filters). For example, you can filter 2310 using 'menu action filter' (as you specify) and then try clicking on the topic 'the number '. Then you must see 2310 here.

    fac586 of course it is a bug in the documentation, but 1 million limit is neither practical nor a way to go.

    Kind regards

    Hari

  • Apex 5 - report

    Hello

    I'm trying to build a page in the underside of mode when the user clicks a button.

    I tried to get various forms. But no luck. Someone please direct me to the right module/URL... Thanks for your time.

    Please let me know if you need more information.

    ===================================================================================================================

    consultation_no 1:doctor_name:ABC

    Medicine 1

    Medicine 2

    Medicine 3

    consultation_no 2:doctor_name:DEF

    Medicine 4

    Medicine 5

    Medicine 6

    consultation_no 3doctor_name:IGS

    Medicine 7

    Medicine 8

    Medicine 9

    consultation_no: 4doctor_name:JKL

    Medicine 10

    Medicine 11

    Medicine 12

    ===================================================================================================================


    Base tables are:

    () m_doctors

    doctor_no

    doctor_name

    );

    () m_cons

    consultation_no

    doctor_no

    Issue_description

    );

    () m_medicines

    consultation_no

    name of medicine

    )

    Mazelin wrote:

    Hello

    I'm trying to build a page in the underside of mode when the user clicks a button.

    I tried to get various forms. But no luck. Someone please direct me to the right module/URL... Thanks for your time.

    Please let me know if you need more information.

    ===================================================================================================================

    consultation_no 1: doctor_name: ABC

    Medicine 1

    Medicine 2

    Medicine 3

    consultation_no 2: doctor_name: DEF

    Medicine 4

    Medicine 5

    Medicine 6

    consultation_no 3 doctor_name: IGS

    Medicine 7

    Medicine 8

    Medicine 9

    consultation_no: 4 doctor_name: JKL

    Medicine 10

    Medicine 11

    Medicine 12

    ===================================================================================================================

    Base tables are:

    () m_doctors

    doctor_no

    doctor_name

    );

    () m_cons

    consultation_no

    doctor_no

    Issue_description

    );

    () m_medicines

    consultation_no

    name of medicine

    )

    If the 'report' and 'page' are used with their standard APEX meanings, then what is required is a classic report based on a custom report named column model (a few examples).

    If you can not understand the information contained in the examples, reproduce the problem with a few examples of data on apex.oracle.com and share identification information of developer here, or post some sample data in the form of DDL/DML or SQL scripts.

  • Report interactive column external URL link

    I have a report of existing standard APEX I'm converting to an interactive report. The current report has a link on the column of ID of Session that passes a value to open an external application. The value he spends is training_session.id, which is a hidden column. When I tried to move this request in an interactive report and to implement the link column, I found that the link does not work. For some reason it isn't replacing the #TRAININGSESSIONID # in the URL with the value real training_session.id. I tried to change to #IR_TRAININGSESSIONID #, but that still does not work.

    Link column settings:
    Link Text: #SESSION_ID#
    Link Attributes: target="_blank"
    Target: URL
    URL: http://training.corporate.company.com/COMPANY.TRAINING.WEB/Forms/PopupBase.aspx?url=Sessions/SessionOpen.aspx%3FSessionID%3D#TRAININGSESSIONID#%26TabIndex%3D0&IsParent=TRUE&ShowDelete=FALSE&ShowOptions=FALSE&ShowPrint=FALSE&ShowHelp=FALSE
    Report query:
    Select Decode(Training_Session.Unit_Id, Null, (Select Lpad(T1.Code, 3, '0') || '-00-' || Lpad(Training_Session.Code, 5, '0') 
                                                      From Course T1 
                                                    Where T1.Id = Training_Session.Course_Id), 
                                                   (Select Lpad(T2.Code, 3, '0') || '-' || Lpad(T1.Code, 2, '0') || '-' || Lpad(Training_Session.Code, 5, '0') 
                                                        From Unit T1, 
                                                             Course T2 
                                                      Where Training_Session.Unit_Id = T1.Id 
                                                      And T2.Id = T1.Course_Id) 
                 ) As Session_Id,  
           (Select Count(*) From Session_Attendee T5 Where T5.Deleted_Ind = 0 And T5.Session_Attendee_Status_Id = 1 And T5.Training_Session_Id = Training_Session.Id ) As Attendees_C,  
           (Select Count(*) From Session_Attendee T5 Where T5.Deleted_Ind = 0 And T5.Session_Attendee_Status_Id = 2 And T5.Training_Session_Id = Training_Session.Id ) As Tentative_t,   
           (Select Count(*) From Session_Attendee T5 Where T5.Deleted_Ind = 0 And T5.Session_Attendee_Status_Id = 3 And T5.Training_Session_Id = Training_Session.Id ) As Withdrawn_W, 
           Course.Name As Coursename, 
           Unit.Name As Unitname, 
           Training_Type.Name As Trainingtype, 
           session_status.name as SessionStatus, 
           Training_Session.Start_Dt As Training_Date, 
           Training_Session.Start_Dt As Training_Time, 
           Product.Name As application, 
           Customer.Customer_Name As Customer, 
           Substr(Sales_Team.Name,1,1) As Sales_Team,
           Training_Session.Id As training_session
        FROM training_session training_session, 
             session_status session_status, 
             customer customer, 
             Course Course, 
             unit unit, 
             Training_Type Training_Type, 
             sales_Team Sales_Team, 
             Configuration Product            
      WHERE training_session.session_status_id = session_status.id 
      And Training_Session.Customer_Id = Customer.Customer_Id (+) 
      AND training_session.course_id = course.id 
      And     Training_Session.Unit_Id = Unit.Id (+) 
      And     Training_Session.Training_Type_Id = Training_Type.Id 
      AND     customer.sales_team_id = sales_team.id (+) 
      AND     course.configuration_id = product.id 
      AND     training_session.deleted_ind = 0 
      AND     course.deleted_ind = 0 
      AND     unit.deleted_ind <> 1   
      AND (instr(:SESSIONSTATUS, training_session.session_status_id) > 0);

    I don't know why, since the no time to study. Important thing is that it works.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
    -------------------------------------------------------------------

  • APEX 4.2.3 consume the web service returning a PDF problem

    Using APEX 4.2.3 on a database of Oracle 11 g R2, Firefox 31.7, we ask a service web restful one before the process of page header, to download a PDF Code file used:

    declare

    CLOB l_clob;

    l_blob blob.

    l_sql_delimiter varchar2 (30);

    l_lang_context integer: = DBMS_LOB. DEFAULT_LANG_CTX;

    l_warning integer: = DBMS_LOB. WARN_INCONVERTIBLE_CHAR;

    l_dest_offset integer: = 1;

    l_source_offset integer: = 1;

    l_Json VARCHAR2 (4000);

    Start

    l_clob: = null;

    DBMS_LOB.CREATETEMPORARY (l_blob, true);

    -Generate here the content of your file in l_clob.

    hr_Pkg.Security_Termination_Form(:P4200_PERSON_HR_ID,l_Json);

    hr_Pkg.call_rest_webservice (l_Json, 'TestME.Pdf', l_Clob);

    Logger.log ('CLOB SIZE IN PAGE: ' | sys.) DBMS_LOB. GetLength (l_clob));

    sys. HTP.init;

    sys.owa_util.mime_header (' application/pdf', FALSE, 'UTF-8');

    sys. HTP.p ("Content-length: ' |") sys.DBMS_LOB.GetLength (l_clob));

    sys. HTP.p ('Content-Disposition: attachment; filename = "TestME.Pdf" ');

    sys.owa_util.http_header_close;

    () DBMS_LOB.converttoblob

    dest_lob = > l_blob,

    src_clob = > l_clob,

    amount = > DBMS_LOB. LOBMAXSIZE,

    dest_offset = > l_dest_offset,

    offset = > l_source_offset,

    blob_csid = > DBMS_LOB. DEFAULT_CSID,

    lang_context = > l_lang_context,

    WARNING = > l_warning

    );

    Logger.log ("SIZE of BLOB: ' |") sys. DBMS_LOB. GetLength (l_blob));

    sys.wpg_docload.download_file (l_blob);

    apex_application.stop_apex_engine;

    exception when others then

    sys. HTP. PRN (' error: ' |) SQLERRM);

    apex_application.stop_apex_engine;

    end;

    We run in the question, that the PDF file is empty with the exception of a few fill-able fields that must be completed in advance by the call to the web service.

    When you run the web service directly from the browser, the PDF that is generated is very well and seems to be complete. And the size of the file that is created as the clob from the web service call is exactly the same size it as the pdf file received directly from the web service.

    When we compare the size of the clob to the size of the blob, we see that the blob is slightly larger in size than the clob.

    Any suggestions? (Sample code for posting to the hosted site for Oracle will not work because you can not call the hosted instance web services and web service is hosted BEHIND our firewall).

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

    Problem is resolved... As opposed to the use of the APEX apex_web_service.make_rest_request must use the utl_http.begin_request and then treats the query returned through utl_http. READ_RAW and who then saving it in a temporary BLOB.

    Maybe when we update to the APEX 5, I'll see if I can deal with it using standard APEX packages...

    Thank you

    Tony Miller
    Software LuvMuffin
    Salt Lake City, UT

  • Application of model names naming standards does not (consistantly)

    I'm trying to understand the logical steps the application of naming standards to the columns in the paintings.  I say this because sometimes it does; but most of the time it isn't.  I noticed this strange behavior last night as he tried to apply my criteria for assignment of personal names but, for the life of me, couldn't understand the logical steps to do.

    I have my own standards of naming template as shown here, which are the ones I want to apply:

    Naming Standard Template.jpg

    Now, for example, I create a new table called customary ADDRESS with the columns and data types.  For the primary key, I ADDRESS_ID , and in order to exercise, I put in the CITY, STATE and zip_code "Mandatory" (or NOT NULL).

    When you go down (or double-click) on ADDRESS_ID or zip_code to display the properties for these columns, you will notice that the 'constraint name', 'Not Null Constraint name' are all empty - as it should.

    Address Properties.jpg

    When I returned to the table properties dialog box and click naming rules, another dialog box appears allowing me to select which specific naming rule, I would like to apply.  I keep all selected one, click OK.  However, when I now explore the ADDRESS_ID, CITY, STATE or ZIP CODE, there is no constraint names based on my model - at least not immediately apply (for some reason any).

    As a work around for me, if I pointed out, say, zip_code, click on the naming rules , and then click OK, then click apply and again double-click zip_code, constraint name would eventually appear.  However, it is never uniform.

    Address Properties_w_Name_Rules.jpg

    The zip_code with the not Null constraint name column has finally appeared.

    Column_w_Name_Rules_Applied.jpg

    We should also not the standard naming PK never applied at all.

    Why it does not work - is this a bug?

    What I am doing wrong?

    Is there another way to do this?

    Hello

    Thanks for the report detailed the constraint not null not defined by the standard naming Wizard. I logged a bug.

    Philippe

  • Migrating php site at apex, need help

    Hi all

    I am quite new to oracle apex so please forgive me if this could be a noob question.

    Request Express 4.2.2.00.11

    I have these codes for example (in php and html)

    partial php code:

    $getSelectedHospital ="SELECT
      F.FACILITY_NAME,
      F.FACILITY_CODE,
      FD.FACILITY_STATUS,
      F.FACILITY_ABC,
      F.FACILITY_ACCRE_CODE,
      F.FACILITY_ACC_START,
      F.FACILITY_ACC_END,
      F.FACILITY_TYPE,
      F.FACILITY_ADDRESS,
      F.FACILITY_CONTACT,
      F.FACILITY_EMAIL,
      F.FACILITY_HEAD
      FROM FACILITY_DETAIL FD
      INNER JOIN FACILITY F ON FD.FACILITY_ID=F.FACILITY_ID
      WHERE FD.FACILITY_DETAIL_ID=:facilityID";
    
    
    $queryGetHospitalGenInfo = $getSelectedHospital;
    $hospitalGenInfoResult = oci_parse($conn, $queryGetHospitalGenInfo);
    oci_bind_by_name($hospitalGenInfoResult, ":facilityID", $hospitalDetailID);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_NAME', $facility_name);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_STATUS', $facility_status);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_CODE', $facility_code);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_ABC', $facility_abc);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_ACCRE_CODE', $facility_accre_code);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_ACC_START', $facility_acc_start);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_ACC_END', $facility_acc_end);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_TYPE', $facility_type);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_ADDRESS', $facility_address);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_CONTACT', $facility_contact);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_EMAIL', $facility_email);
    oci_define_by_name($hospitalGenInfoResult, 'FACILITY_HEAD', $facility_head);
    
    oci_execute($hospitalGenInfoResult);
    oci_fetch($hospitalGenInfoResult);
    
    
    

    partial html code:

    <td class="heading_td_top"><?php echo $facility_name;?></td>
    
    

    It is quite easy to view the results of my query in my html code since I can just echo variables of my lines of oci_define_by_name.

    How do I in the oracle apex? you have no need to spoon feed me, you can just point me to a tutorial or some keywords. Thank you!

    PS

    in my two months of game w / apex oracle, I really like it. I miss just the possibility to have codes php at my disposal when I ask things.

    Post edited by: m.davide, typo

    BillyVerreynne wrote:

    Dynamic PL/SQL region.

    Use the following pattern of PL/SQL code as the source for the region:

    HTP. PRN (')

    ' );

    for loop c in (select...)

    HTP. PRN (')'|| c.Col1 |');

    end loop;

    HTP. PRN (»)

    Develop/substitute HTML table set in the shape as needed.

    I would use regions standard report with custom report templates to keep things as declarative as possible. This approach has much better separation of concerns as a dynamic region of PL/SQL. SQL, HTML, and CSS are all treaties in layers separate and are so much easier to understand, debug and modify as PL/SQL with sliders. FOR loops; loads of very tedious HTP. P, string concatenations, '<'s and="" '="">of.

    With a lateral thinking and creative models of the line, expressions and logical query usage, standard APEX reports are able to produce complex structures and layouts:

    m.Davide wrote:

    90% of my php site has been implemented in my new site of apex. My only complaint are the profiles (which resembles typical profiles, as a profile facebook but for hospitals). I want to just recreate the look of my php site since my boss wants a look almost identical.

    What I intend to do, is create an HTML region where I have my own layout code. My problem is how to fill my custom html table.

    Create the layout using custom of APEX (page/region/State) templates. As Billy says forget the procedural approach of PHP and use the declarative features that provides the APEX.

  • date in the apex 4.1 format

    Hello

    We have a custom to an apex application table. In this table we have type DATE for column1(for eg)

    If Column1 is introduced by APEX, we use date picker standard apex and format DD-MON-RRRR. After we insert and when we refreshh the apex to see page

    We see values such as 10 October 10 October 10, 2010,

    any idea or fix...

    I tried in the select statement to sql source [in this area] with to_date(column1,'DD-MON-YYYY')... but did not

    Also, I followed same insert statement with no luck

    Please notify

    KP

    is a change in the properties of the application and it works now

  • Try to incorporate html 5 in the apex... need help with cross-border

    I was looking for in Roel Hartmans link on how to create html text items.
    I had used a plugin to create the html text element. .
    I did not understand how to get a border coloured as
    email and url's for that link...
    http://Apex.Oracle.com/pls/Apex/f?p=22115:2:0:no:

    I guess it's something to do with the css... If anyone has any idea pls do let me know
    I would also like my text objects to be rounded.

    E > >

    I need to replicate in the same way as invalid so only when the e-mail is correctly entered it turns gray
    And in telephone unit for the attribute of the form element I have I call class = "invalid."

    He gets the text with pink background color element, but it does not turn grey...
    Browsers that support HTML5 of entry controls and CSS3 : invalid pseudo-class provide this out-of-the-box behavior. In browsers without this support, the control will be look and behave like an element of basic text. Using a standard class of invalid attribute is not somehow the same. Build this behavior yourself for browsers without HTML5 support is much more complicated. (It would be an idea looking for plug-ins which provide similar functionality).

    I'd be inclined to use these HTML5/CSS3 features like a form of progressive enhancement, their inclusion to the benefit of users with compatible browsers and enabling them to degrade gracefully to basic controls in older versions, where your standard APEX validation will go and indicate possible errors.

    Note that there is an example of a phone number item in the section 'Find the boss' of the article linked.

  • APEX and Oracle 11.2.0.2

    As I understand it, APEX v3.2 is already pretty well installed in GR 11, 2 (after some configuration changes). I have a client who wishes to use APEX 4.1. Two questions:

    (1) can I put the standard APEX 3.2 who settled with 11 GR 2 4.1

    and

    (2) I realize that mod_plsql will be is no longer supported in EBS 12.will that affect me when I go to 12 EBS?

    All documents that you can tell me would be great as well.

    Hello

    Can I update the standard APEX 3.2 who settled with 11 GR 2 4.1

    No problem, just the update.

    I realize that mod_plsql will be is no longer supported in EBS 12.will that affect me when I go to 12 EBS?

    You will need a separate for Apex web server as R12 web server does not support mod_plsql. Either go you to Apex listener/Glassfish or a separate installation of Oracle HTTP server. White paper Oracle 'Extending Oracle E-Business Suite Release 12 with Oracle Application Express' available from My Oracle Support is the starting point.

    Rod West

  • Dynamic column headings

    You will need to run a report on the budget for the past 3 calendar years. I can produce the report but has difficulty to print the column position properly review this report need to run each year. Is it possible to appoint the year on appropriate using bi publisher and APEX V4 column header?

    Oracle: 10G

    ex:
    If the report runs this year: column must be 2010,2009,2008.
    If the report is run next year: column name must be 2011,2010,2009
    .....

    Thank you.



    Tai

    Published by: tai84 on October 27, 2011 12:27

    Oops, Yes, the password has expired. I have reset. Try again... same settings.

    I was not aware of the position PL/SQL column type. You can specify in the 'Report of the attributes' tab in your area. At the top of this page, there is a section of Type "headings". If you click on the option button "PL/SQL", it displays a text box field to specify PL/SQL code to determine the column headers. This is what is used in my sample application. It calls the function 'GET_QUERY_COLS', you can find the SQL Workshop of my sample workspace area.

    A brief description of what is happening in my example...

    In my area "Dynamic motion", I run a dynamic SQL query because the values of the year for the columns are unknown. It runs the report of dynamic query and stores the dynamic query to the P1_REPORT_QUERY point. Then, this value of the element is passed in the function GET_QUERY_COLS that returns the name of the column, that I need. Of course, I have the user selects a range which essentially defines the columns, I need.

    Thank you
    Mark

Maybe you are looking for

  • How to increase the height of the scrolling frame?

    Whenever I open a website that has a frame in it, the view-able area is very small, and I need to scroll down to see the information, even if there is plenty of room on the screen. (Embedded pdf files I have this problem, also work sites that have li

  • Can I go back to Firefox 28. I'm now 29 of Firefox. I don't like.

    I want to go back to Firefox 28. How do I do that?

  • the font size on the screen

    How to change the size of the characters displayed on the current screens of k high resolution 4 k and 5 - we become old and posted letters are too small for quik and easy playback and editing. And the zoom tool is too bulky to use - I want to see th

  • WindowsUpdate_80248015 'code error '.

    I have Windows Vista (64) and Norton 360 on my dell computer.  I got a message on my Update icon in the task bar that says Windows could not Update to finish its tasks.  When I clicked on the icon it took me for the program update of Windows where I

  • "Unable to download. Without this interface supported. "

    I bought 4 DVDs on the internet and tried to download but get this message: "unable to download.  Without this interface supported"I can watch the DVD on Quick Time player, but it will not download.  I have Windows Vista 64-bit.