apex_item in a specific subregion

Hi I need to create programmatically from the elements, but I need them to be located in a specific region, the documentation of apex_item I do not see how this could be done, is it possible?

For example a text point parameters are:

APEX_ITEM.TEXT( p_idx IN NUMBER,

                p_value IN VARCHAR2 DEFAULT NULL,

                p_size IN NUMBER DEFAULT NULL,

                p_maxlength IN NUMBER DEFAULT NULL,

                p_attributes IN VARCHAR2 DEFAULT NULL,

                p_item_id IN VARCHAR2 DEFAULT NULL,

                p_item_label IN VARCHAR2 DEFAULT NULL)

RETURN VARCHAR2;

But none of them indicate where to put.

Thank you for your time.

DelayLama wrote:

Hi I need to create programmatically from the elements, but I need them to be located in a specific region, the documentation of apex_item I do not see how this could be done, is it possible?

For example a text point parameters are:

APEX_ITEM.TEXT( p_idx IN NUMBER, 
                p_value IN VARCHAR2 DEFAULT NULL, 
                p_size IN NUMBER DEFAULT NULL, 
                p_maxlength IN NUMBER DEFAULT NULL, 
                p_attributes IN VARCHAR2 DEFAULT NULL, 
                p_item_id IN VARCHAR2 DEFAULT NULL, 
                p_item_label IN VARCHAR2 DEFAULT NULL) 
RETURN VARCHAR2; 

But none of them indicate where to put.

Dynamic objects must be generated in a report or dynamic PL/SQL area, so create the subregion using one of these types of region.

Tags: Database

Similar Questions

  • Apex_ITEM. Checking the CHECKBOX column header

    Hi - I have a report created with the 1st column using the APEX_ITEM. Api CHECKBOX2. The column displays OK with the title like "Select" I put the label column.

    However, I would like the user to be able to see a CHECKBOX in the column header label where she can click / uncheck to select all the lines or Unselect all the lines. I remember doing so using JQuery but that you don't have an idea now. Please tell us how can I make the label for the checkbox column header change of the "Select" to a box real for the user select/UN-preselect feature.

    This feature is expected to work similar to a column check/uncheck in form heading delete several lines. Once the user selects all or specific to a game of lines, I do a process page for managing the lines.

    attach a picture of the function I'm trying to implement.

    This is the generally accepted method, directly from APEX APIs

    How do to add the manual box and check all the check box in a grid - apexexplorer.com

    
    

    but it was an interesting read

    Apex of learning the hard way! : turn the bloody dynamic button with Actions...

  • APEX_ITEM. TEXT size

    Hi all

    I tried to get apex_item.text to work in a report by using the sql feature returning. In the report, I have in the select the following:

    apex_item. Text (p_idx = > 1, p_value = > value, p_attributes = > ' size "6" readonly = "")

    The works of part readonly but the size is not. Inspect the HTML source code it shows size is 20 again.

    Also, tried p_size and who does not work either.

    Looking for documentation, it actually does not refer to size at all?

    p_size

    Controls HTML tag attributes (such as people with disabilities).

    [http://] docs.oracle.com/cd/E37097_01/doc/doc.42/e35127/apex_item.htm#AEAPI211

    How do you get size to work in apex_item.text () Please?

    Thank you

    RooBie wrote:

    Hi all

    I tried to get apex_item.text to work in a report by using the sql feature returning. In the report, I have in the select the following:

    apex_item. Text (p_idx-online 1, p_value-online value, p_attributes =>' size "6" readonly = "")

    The works of part readonly but the size is not. Inspect the HTML source code it shows size is 20 again.

    Also, tried p_size and who does not work either.

    apex_item.textincludes the p_size parameter specifically to set the size attribute. This works as expected:

    select
        apex_item.text(
            p_idx => 1
          , p_value => t.dummy
          , p_size => 6
          , p_attributes => 'readonly') text_item
    from
        dual t;
    

    TEXT_ITEM

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

  • How to view a box horizontally using APEX_ITEM. CHECKBOX2

    With the help of the following api APEX_ITEM.checkbox2 query:

    SELECT APEX_ITEM.CHECKBOX2(1,empno,'CHECKED') "Select" FROM emp ORDER BY 1 

    which returns 14 rows of boxes to the bottom of the page. In the attributes column, I put this column "Standard report Column.

    With a setting up a checkbox element in Oracle APEX, you can specify the 'number of columns box' for say 5 and have a set of 5 displayed horizontally returned check boxes.

    How can I get this scenario using my query above, APEX_ITEM.checkbox2 inorder to view these 14 boxes in a group of 5 horizontally - is it possible?

    Thank you.

    Tony F. says:

    First of all I am trying to achieve based on my previous answer is, using classic SQL report data, specifically, two columns of this report, I want to create two regions box, using the distinct values of these two columns and have those initially active.

    that is to say:

    The data returned in the report for these two columns (for example report returned 200 lines):

    COL_NUM of separate data on 200 lines = 1,2,3,5,7

    COL_ITEMS of separate data on 200 lines = A, B, D

    So now using these two columns with their distinct values, I want to dynamically create these two regions mentioned above, horizontal and side by side box:

    Nums: [ X ] 1  [ X ] 2  [ X ] 3  [ X ] 5  [ X ] 7                                                Items: [ X ] A  [ X ] B  [ X ] D

    Use these check boxes, I also need to be able to determine out of these two regions of the checkbox, checked those that the user can uncheck several checkboxes.

    I do not see why you should use separate regions / apex_item.checkbox2 to do. Why it can't be done using the checkbox objects and LOVs?

  • Use APEX_ITEM. SELECT_LIST_FROM_LOV report

    Hi all

    I try to create an editable state.
    In this report, I have a few columns to allow users to update the information. I have a problem that my program return the current values of the APEX_ITEM. SELECT_LIST_FROM_LOV in specific checked lines.

    For example:

    Here is the code for my report:
    -------------------------

    1.
    SELECT apex_item.checkbox(1, h.nbt_po_seq, 'UNCHECKED') defaulted,
    --apex_item.hidden(4, h.nbt_po_seq) "PO_SEQ ",
          h.po_num,
           h.po_vendor_name,
           (select d.nbt_dept_desc
              from nbt_dept d
             where h.nbt_dept_seq = d.nbt_dept_seq) "dept_name",
           
    APEX_ITEM.SELECT_LIST_FROM_LOV 
        (p_idx           => 3,
        p_value         =>NBT_LE_INFO_SEQ_holder,
        p_lov  => 'NBT_LE_INFO',
        p_attributes   =>NULL,
        p_show_null    => 'YES',
        p_null_value   =>  NULL,  --'%NULL%',
        p_null_text     => NULL,
        p_item_id       => NULL,
        p_item_label    => NULL,
        p_show_extra    => 'YES') "LE_NUM"      
      FROM nbt_po h
    ------------------------------------------------------
    2. here's my validation, just to see what return values.
    DECLARE
       l_message  VARCHAR2 (4000);
    
    BEGIN
    
     FOR i IN 1 .. apex_application.g_f01.COUNT LOOP
                 l_message := l_message
                || '<br>'|| 'LE_NUM: ' || :P17_LE_NUM || '    '
                || 'Row ' 
                ||i || '     ' || 'f01- '|| apex_application.g_f01(i)|| '<br>'
                || 'f02- '|| apex_application.g_f02(i)||'<br>'
    ||  'f03- '||apex_application.g_f03(i)
    
    
            --   || 'f04- '||apex_application.g_f04(i)  ||'<br>'
               -- || 'f01_' || '#ROWNUM#' 
                        || '<br>'
                ;
     END LOOP;
    
     RETURN LTRIM (l_message, '<br>');
    END;
    -------------------------------
    3. If I checked the line 3 and 5.
    I can get correct ID of < b > h.nbt_po_seq < /b >, but for APEX_ITEM. Value SELECT_LIST_FROM_LOV, I'm getting rows 1 and 2, 3 and 5.

    Can someone please help me and let me know how I can correctly return the values of selected line for 'APEX_ITEM. SELECT_LIST_FROM_LOV '?

    Thank you
    Ling

    Published by: LK 14 Sep, 2012 22:52

    This explains how to get the selected rows:

    http://Apex.Oracle.com/pls/OTN/f?p=31517:95

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

  • I need to buy new RAM for my iMac mid-2011. What are the specific specifications?

    I have a mid-2011 iMac, 21.5 inches, with an Intel Core i5 to 2.7 GHz and 4 GB 1333 MHz DDR3 processor. What RAM memory should I buy? There are a lot of options with different specifications listed on Amazon, and none seems correct. Help, please! Thank you

    Jbdammarell,

    I used OWC computer for my needs memory. Here is their recommendation for your computer.

  • Freezes in Finder. looks like pieces of various files and I don't see any specific file to select

    Freezes in Finder. looks like pieces of various files, and I don't see any specific file to select. Only solution is to shut down the computer and restart. How can get fixed?

    Try to drag the /Home/Library/Preferences/com.apple.finder.plist file to the trash (not empty.) Also, drag the /Home/Library/Caches/com.apple.finder/ folder to the trash.

    If you see not the folder/Home/Library/and then see the following:

    Three ways to make the House/library folder Visible

    A. this method will make the folder visible permanently. Open the Terminal application in the Utilities folder, and paste the following at the command prompt:

    chflags nohidden ~/Library

    Press RETURN.

    B. click on the desktop, press the Option (⌥) key, select library in the Finder menu go.

    C. go to the folder in the Finder menu select go. Paste the following text in the path field:

    ~/Library

    Click the OK button.

  • Turn off sync to iCloud drive to specific folders?

    I have some files I've downloaded to iCloud Drive, which I rarely opened.

    I know than iCloud Drive intelligently synchronizing files that I rarely opened, but is it possible for me to:

    1. mark a specific folder in iCloud drive to not synchronize my devices? I think that this as a feature of "cold storage"?

    2 interrupt synchronization to iCloud drive everything as I interrupt iCloud Photos on Mac?

    Since I'm in an environment where the internet speed is very limited and I often uses mobile wifi (MiFi) whereby data is very expensive, so I need to manage the synchronization manually by myself. I also want to save precious space on my MacBook Pro SSD, this is why I need this feature of "cold storage" in the cloud.

    Note: This tip below might work for the interruption of synchronization, but y at - it another way to interrupt synchronization?

    How suspend you iCloud drive sync?  It is using all of my mobile data!

    My environment: 13 "2015 retina MacBook Pro installed in El Capitan, iPhone running iOS 9.3.5 6.

    Thank you.

    Right now, iCloud drive will be synchronized snapshots of documents and data from your Mac.

    macOS Sierra will bring changes to this.  See the preview.   Preview - Apple macOS

    You will be able to use "Optimize storage" for iCloud Drive and include your desktop and Documents folder in iCloud drive.  Then you can choose to keep only the document new and used recently, all the old files and data locally in the cloud.

    Get ready for the update on 20 September.

  • Do I need a specific external hard drive to back up an iMac or I can use?

    I learn by an advisor to apple support I need to update the software on my mac. Before doing that I have to back up using an external hard drive. Can I use any external hard drive or do I need a specific which is compatible.

    You can use the time Capsule's internal drive or one regular, but will probably have to reformat a disk that is not specifically intended for Macs. Except otherwise stated, Time Machine and other products that require that the backup drive be formatted as Mac OS extended will not be able to go back to a dedicated NAS.

    (144489)

  • specific App password has not created

    I am trying to create a specific app password.  I go to security on appleid.apple.com, I click on edit, I click on generate the password, I see a password, I copy and paste into the app, I need to and it does not work.  I try to select done first then paste, it doesn't seem to work.    I click on view history, and I do not see the specified password.  I tried 4 times now.  For each test, I received an email saying that a specific app password has been generated.  Can anyone suggest what could go wrong?

    This seems to just have been a temporary problem, as passwords appeared now and work.

  • How can I block e-mail from specific senders?

    I'm tired of searching on a large number of emails in my spam folder. A large part of the enamel comes from the sender even. How can I block e-mail from specific senders?

    Junk e-mail is automatically deleted after 30 days > iCloud: manage junk e-mail

  • AutoFill stopped working for specific sites.

    Hey guys,.

    currently the latest version of Safari on the latest version of El Capitan.

    AutoFill works fine most of the time, however, there is a specific site in which I use every day for work sheets and auto-fill on the username, but fills the password. This happens on all my devices (Mac and iOS)

    I checked in the preferences and my username and password are all correct and the check box is selected to allow auto-fill work.

    This problem also happens to other sites for example my work email (outlook, webmail) where the username is autofilled, but not the password.

    Any help is greatly appreciated!

    If sites do not autofill.

    Safari 9 (El Capitan): If AutoFill does not work

    https://support.Apple.com/kb/PH21427?locale=en_US

    For more information:

    https://support.Apple.com/kb/PH21470?locale=en_US

  • Formula to determine if a specific day of the week between two dates?

    I am creating a spreadsheet to track my time PD & holiday. I usually work weekends, and my vacation allowance includes a specific maximum number of Sundays a year. Is there a way to calculate how much Sunday fall between a date range (or any day of the week, by the way)?

    (i.e. If my vacation starts February 1, 2016 and ends March 2, 2016, Sunday how are included?)

    I know that I can calculate how many weeks have passed, using = Quotient (DateDiff (Start_Date, End_Date), 7), but it is possible to include two Sundays in a period of 7 days.

    Hi Eric,.

    Here is one approach.

    C2 = A2 + (7−WEEKDAY(A2,2))

    This concludes the first Sunday following the start date.

    D2 = STRIPDURATION ((B2−C2) ÷7)

    I formatted this column without decimal places to see full weeks of the first numbers Sunday.

    Quinn

  • Specification of the MAC MINI

    I have mac mini model serial number A1347 EMC 2840 C0 * 1HV. Please could you me my model specification

    < personal information under the direction of the host >

    It's an end of 2014 Mac Mini, see > Mac mini (end of 2014) - technical specifications

    and > http://www.everymac.com/systems/apple/mac_mini/specs/mac-mini-core-i5-1.4-late-2 014 - specs.html

    You periodic check # to > http://www.chipmunk.nl/klantenservice/applemodel.html

    Finally you should not put your serial number of the Web and I asked the host to edit it on your question.

  • Messages marked as read for specific folders

    I know not how to organize my messages to filter and specific places in folders according to the email address, but what I don't know how to do is to get specific incoming emails (more passing in specific folders) to mark as read, but only for these specific email addresses. Could someone tell me how to proceed?

    There is a filter action "mark as read".

Maybe you are looking for

  • Alarms have no sound on my iPad Pro for iOS 9.3

    I use a little timers to remind me when I do the tea. Since 9.3, however, they are not a noise, Siri, with reminders app or the clock app. The system volume is enough all the way, and my iPad Pro is powered. I can open clock, set a timer for 2 min th

  • Satellite P100-423 reviews

    I hope you all can help. The above model actually exists? He can't see the abandoned section, but I can't find to see if it is useful to do, it's the offer at my Local Costcos for £705. Is the series of satellites of good... Any comment is appreciate

  • Pavillion h8-1202: hp h8-1202 uefi

    I have a h8-1202 system with multiple disks, which is a 4 drive to Seagate.  When you try to boot from that disk boot selection option in the system configuration screen, that the drive does not appear as option UEFI well that I am sure, that it shou

  • Question: BDP-S570 or BX57 internet multi-channel flow?

    Hi all, I noticed recently that when I listen to the audio or video content on the network as my BDP-S570 diffuse now as a multichannel surround sound instead of the 2 stereo channels.I don't know if this is caused by the latest firmware I installed

  • Need help, need product key for XP sp2 reinstall XP can be done without key to sting

    Let me know... Katyana_89 Remember - this is a public forum so never post private information such as numbers of mail or telephone! Ideas: You have problems with programs Error messages Recent changes to your computer What you have already tried to s