Lists of the Apex 4.2

I just tried to create a list on my oracle workspace and there is no way to specify the type of list, that is to say, vertical, horizontal, etc.
I have several choices in Aex 3.2

Gus

Hello Gus,

the standard list template that you have been able to clarify for the shared component that list has been deleted and we will use the "model of the list" If you create a list on a page box.

(1) this has been necessary because of the multiple interfaces and themes user active we now support in 4.2. A list on the level of the list template would not work if it is used by the regions in the different user interfaces because a theme is always associated with a single user interface.
(2) we got the feedback that the developers when confused which model is actually used for lists

Concerning
Patrick
-----------
My Blog: http://www.inside-oracle-apex.com
APEX Plug-Ins: http://apex.oracle.com/plugins
Twitter: http://www.twitter.com/patrickwolf

Tags: Database

Similar Questions

  • Delete a list in the Apex 3.2

    I have a list in the shared components, how I can remove the entire list. I deleted everything on it, but I can't seem to remove the high level.

    go to share components > list > change your list > click Edit > delete

  • How to change the border style of the list items in the apex


    Hi all

    We have created a few items from the selection list in the Apex and ask users to make changes to the border.

    I tried many ways, but he was not able to make changes, some could help me how we can change the border style of list items in Apex. By, the approach has been used by us

    Attributes of the element in the HTML form -> style = "" border: 1px solid #E5E4E2; "" [I speak that way] but no luck.

    Kind regards

    Sheikh tayeb.

    SruthiTamiri wrote:

    Hello

    Please find the details below

    APEX version # 3.2

    Internet Explorer version #7

    Mozilla version 12.0.

    Used theme #Blue

    Topic identification number is #12

    It is not possible to change the appearance of the borders of the selection list in IE7.

    To the borders of all the elements of the selection list style on a page in other browsers, include the following style sheet in the HTML Header page:

    .formlayout select {
      border: 1px solid #E5E4E2;
    }
    

    APEX 3.2 is no longer supported, and IE7 is obsolete. Upgrade to the current version is recommended.

  • How to get a list of the dependent object of an apex application

    Hello

    Is it possible to get all the objects with a dependency on an apex application? I need the list of all the objects (Tables, views, MViews, procedures, functions, Packages etc.) even if they are referenced in the process page, postings or even in the security of the page.

    I tried to object dependencies Application and database object dependencies report, but it seems that it does not cover the validations and the process of the page. Please confirm that as well.

    My apex version is 3.2

    Any help will be much appreciated.
    Thanks in advance!

    Prasanth

    Prasanth wrote:

    Is it possible to get all the objects with a dependency on an apex application? I need the list of all the objects (Tables, views, MViews, procedures, functions, Packages etc.) even if they are referenced in the process page, postings or even in the security of the page.

    I tried to object dependencies Application and database object dependencies report, but it seems that it does not cover the validations and the process of the page. Please confirm that as well.

    My apex version is 3.2

    Support for APEX 3.2 expired in February 2012, so it is strongly recommended to upgrade to take advantage of the multitude of new features introduced in 4.x and 5.0, and most important to get all the security enhancements added since 2009.

    I don't have access to an instance of 3.2 at the present time, however the report dependencies of APEX 5.0 database is showing objects referenced in process, Validations, Conditions and authorisation schemes. If it has been improved since the 3.2, so it clearly is another good reason to upgrade.

    If you find that dependencies for database report does not meet your needs, then you can create your own tool by using queries custom views of the APEX.

  • How to get a selected list of a shuttle to a textfield (separated by commas) in the apex?

    Hello

    I use apex 5.

    I used the shuttle to load the list of values of SQL query.now I want to get the list of the selected values on the right side of the shuttle to a textfield.values should be separated by commas.

    Please someone tell me how to do this.

    Thank you

    Hi geslin,.

    Garza says:

    I use apex 5.

    I used the shuttle to load the list of values of SQL query.now I want to get the list of the selected values on the right side of the shuttle to a textfield.values should be separated by commas.

    Please someone tell me how to do this.

    You can do it by using dynamic action.

    Create a dynamic action on the onchange event of your Shuttle point (say P1_SHUTTLE) to get the values to select in the text element (say P1_TEXT) as follows:

    Name: give a name

    Event: change

    Selection type: item (s)

    Article (s): P1_SHUTTLE (select your Shuttle point)

    Condition: is not null

    Action: Execute the PL/SQL Code

    Fire on loading the Page: No.

    PL/SQL code

    BEGIN
      :P1_TEXT := REPLACE(:P1_SHUTTLE,':',',');
    END;
    

    Page items to submit: P1_SHUTTLE

    Page referred to return: P1_TEXT

    Kind regards

    Kiran

  • Apex 42 5 theme image files in the list of the Navigation menus

    Environment: Apex 5 / 12 c/Linux

    Theme 42 - Menu Navigation

    I'm trying to configure the Navigation Menu to use images in the directory of the East (or #WORKSPACE_IMAGE #) rather than the css fontawsome images.  The help in the Navigation Menu panel shows that the option to use fontawsome css images or images of file system is controlled in the list template.  However, I can find no documentation on how the template must be configured to control this option.

    I copied the side Menu of Navigation list model with a new model (picture Menu in the side Navigation) and the Navigation Menu to use this new list (under User Interfaces).  I tried various constructions in the new model based on the construction of li JQuery for example replace the HTML for the list template in the sense of: -.

    "< li characteristics-current ="true"data-id =" "#A01 #" unable to read the data = "#A02 #" data-icon = "false" >

    "< a href =" "#LINK #" title = "#A04 #" > < img src = "#IMAGE #" / > #TEXT_ESC_SC # < /a > < /li >

    However this is made with a fake fontawesome class and the img tag is removed.

    Various other html constructs fail, which suggests that a flag is somewhere that is needed to indicate to the Apex renderer to use images of filesystem rather than fontawesome classes.  It doesn't seem to be a global setting or the option to configure this.

    Any ideas?  Or the development team would provide advice?

    Thank you.

    HI Paul,.

    Have understood you things by yourself very well.

    You are right that change the markup for the list to be used by widget tree side navigation will not affect the markup generated client side. It is similarly of the menu widget. The tree and the menu widgets are JavaScript data-driven. The markup simple list is just a way to let the models list APEX to create menus or trees. The markup simple list gets transformed into a JavaScript data which are then used to create widgets. The treeView widget and the widget menu cannot use the img tags to display icons.

    Say that 5 APEX uses FontAwesome icons or even the icons of fonts is a little too specific. APEX 5 uses CSS to specify icons. This includes using images and CSS sprite images as long as they are specified in the CSS. Based on the options you give, I think that you understand the situation. In addition to background images 64 Basic, you can use other background images as well. For example, an image of the CSS sprite comes with jQuery UI, and is at your disposal. Or you can use a single image. You can create your own images to sprite.

    Take a look at this simple demo application where I used some of the icons of the sprite CSS UI jQuery as well as some images from the APEX.

    https://Apex.Oracle.com/pls/Apex/f?p=81996:1

    I created a file called my_sprites.css and transferred as a static application file. Then I added it to the user interface of office under CSS files:

    #APP_IMAGES #my_sprites.css

    Here are its contents:

    body .a-TreeView .ui-icon.fa,
    body .a-TreeView .mi-icon.fa {
        display: inline-block;
        margin: 0 12px;
        vertical-align: middle;
        padding: 0;
        height: 16px;
        width: 16px;
    }
    
    body .a-TreeView .mi-icon.fa {
        height: 20px;
        width: 20px;
    }
    
    .t-TreeNav .a-TreeView-node--topLevel > .a-TreeView-content .ui-icon.fa,
    .t-TreeNav .a-TreeView-node--topLevel > .a-TreeView-content .mi-icon.fa {
        display: inline-block;
        margin: 0 12px;
        vertical-align: middle;
        padding: 0;
        height: 16px;
        width: 16px;
    }
    
    .t-TreeNav .a-TreeView-node--topLevel > .a-TreeView-content .mi-icon.fa {
        height: 20px;
        width: 20px;
    }
    
    .mi-icon {
        height: 20px;
        width: 20px;
        display: inline-block;
    }
    
    .mi-icon-calculator {
        background-image: url("/i/htmldb/icons/pt_computation.png");
    }
    
    .mi-icon-piechart {
        background-image: url("/i/htmldb/icons/pt_piechart.png");
    }
    

    The navigation tree side force the type icon "f" then the fa class is added to all icons. If the CSS overrides some properties for the fa class. Some other special css is necessary for when icons are in a tree. For the menu icons, I entered "mi-icone mi-icone-Calculator" for example Image/class field.

    I hope that this help show how to use other types of icons CSS.

    Kind regards

    -John

  • Save before exit Skillbuilders (version 3.0.1 for APEX 4.0): problem with some element of list in the form Manager

    Hello

    I have a problem with the plugin save before exit that I downloaded from Skillbuilders. As I use Oracle APEX version 4.0.2 and Oracle 10 g r2 database; so I downloaded one that says "Save before release (version 3.0.1 for APEX 4.0)" skillbuilders and follow-up of their documentation to import the plugin and use it.

    My problem is that even if I do not make any changes to data in the form and go to another tab. the alert message always appears, and by the way, I have an element of list manager on my form and it gets highlighted. So, even if I make the changes or do not change; still, the alert message is displayed and highlights the element of list manager. I think maybe the problem is to have a crèche in the form list item. I have reproduced the same problem in my personal workspace. Here are the details.

    http://Apex.Oracle.com/pls/Apex/f?p=55129

    Details of the workspace

    Name of the workspace: raghu_workspace

    username: orton607

    password: orton123

    App # 55129

    Page: 2 - has the element of list manager.

    Page 3 - works fine without the element of list manager

    Please help with possible suggestions.

    Thank you

    Orton

    Orton,

    I have connected to the workspace you and added a replacement JS file that corrects this error.

    If please, give it a whirl and let me know if you find other problems with it.

    It is to the 3.0.2 version of the plugin and I do not know if this even fix will work for your local Apex version earlier.

    When you are ready to go to the APEX 4.0.2 Please contact me directly for assistance. In the meantime, I'll work on the creation of a patch for this kind of new downloads of the plugin will contain this change.

    Greg

    [email protected]

  • How to create the drop-down list, as in the generator of the APEX?

    Hello

    I use the theme 2. I would like to create a drop-down list as in Apex Application Builder, where, on top, you see home | Application Builder | SQL workshop. When you click on one of them, a menu drops down.

    Is it possible to do with standard APEX or I have to do some Javascript coding?

    Tamas

    Hello
    I have them tested again, as I'm new to apex and that I am in the process of upgrading my knowledge by reading books and documentation on the apex, but you may be interested in these plugins
    located @ http://www.apex-plugin.com/

    * [url http://www.apex-plugin.com/oracle-apex-plugins/region-plugin/warp11-css-menu_85.html] Warp11 CSS Menu *.
    * [url http://www.apex-plugin.com/oracle-apex-plugins/region-plugin/drop-down-menu_60.html] Drop-Down Menu *.
    and my favorite
    * [url http://www.apex-plugin.com/oracle-apex-plugins/region-plugin/jquery-menu_82.html] jQuery Menu *.

    Hope this helps

    Concerning
    Jean-Yves

  • Special characters encoded in the selection to the APEX 4 lists

    A question. APEX 3.2, I had a list of special selection which included spaces (coded as a hard space HTML character) indent lines and different characters of graphics HTML coded to give the list selection a hierarchical distinctive look of an office hierarchy. The APEX 4, special codes are more translated in HTML if I no longer get the special look that was available for the drop-down list. Now that you're actually seeing all the coding.

    I saw the note in the Release Notes which says that to select the items in the list "now always come out the values in the list." Someone in the forum know of another way to do this in 4 APEX?

    Published by: wnappari on 30 Sep, 2010 18:48

    I saw the note in the Release Notes which says that to select the items in the list "now always come out the values in the list."

    Ooooh. I had not noticed that. Without introduced doubt as well as '&', ' < ' and ' > ' are visible / not to break things when they appear in the dynamic selection lists. However he break things in Re: html tag in the list select and what you describe. Must have optional avoidance and provided a check box to indicate whether the list should be escaped or not...

    give the list a hierarchical distinctive look of an office hierarchy selection.

    I disagree with a list of selection to help to do this, since, as you pointed out, he must go to extremes to get a linear structure to look at a hierarchy. HTML lists can be nested to provide a structure and visual hierarchy. Can't convince you to use lists? ;\

    Someone in the forum know of another way to do this in 4 APEX?

    1. use UNISTR to generate the entries of the list as a string of Unicode characters and keep your fingers crossed that the coding, fonts and browser support it throughout the stack...

    For example, to get the exhibitors discussed in the link above:

    select unistr('10\00b2'), '100' from dual
    union all
    select unistr('10\00b3'), '1000' from dual
    

    2. create your own plugin object to use rather than the standard list item type.

  • GET_NUMERIC_SESSION_STATE and GET_SESSION_STATE - the list of the values of the Apex?

    Where can I get a list of valid parameters for GET_NUMERIC_SESSION_STATE and GET_SESSION_STATE values that provide the apex engine State (that is, things like FLOW_SECURITY_GROUP_ID) rather than the State of enforcement?

    Here are all of the names supported v recognizes and expression that describes the return value:

    FLOW_SESSION, APP_SESSION, SESSION, INSTANCE => wwv_flow.g_instance
    FLOW_ID, APP_ID => wwv_flow.g_flow_id
    FLOW_ALIAS, APP_ALIAS => wwv_flow.g_flow_alias
    FLOW_USER, APP_USER => htf.escape_sc(wwv_flow.g_user)
    FLOW_USER_ID, APP_USER_ID => wwv_flow.g_user_id
    FLOW_STEP_ID, APP_STEP_ID, FLOW_PAGE_ID, APP_PAGE_ID => wwv_flow.g_flow_step_id
    FLOW_IMAGES, APP_IMAGES => wwv_flow_file_mgr.get_file?p_security_group_id=' || wwv_flow_security.g_security_group_id || '&p_flow_id=' || wwv_flow.g_flow_id || '&p_fname='
    FLOW_SECURITY_GROUP_ID, APP_SECURITY_GROUP_ID, COMPANY_ID, WORKSPACE_ID => wwv_flow_security.g_security_group_id
    FLOW_CURRENT_MIN_ROW => wwv_flow.g_flow_current_min_row
    FLOW_CURRENT_MAX_ROWS => wwv_flow.g_flow_current_max_rows
    FLOW_CURRENT_ROWS_FETCHED => wwv_flow.g_flow_current_rows_fetched
    FLOW_JOB => wwv_flow_plsql_job.g_job
    FLOW_LAST_TAB_PRESSED => wwv_flow.g_last_tab_pressed
    FLOW_HEADING_BGCOLOR => wwv_flow.g_heading_bgcolor
    FLOW_TABLE_BGCOLOR => wwv_flow.g_table_bgcolor
    FLOW_UNIQUE_PAGE_ID => wwv_flow.g_unique_page_id
    APP_TRANSLATION_ID => nvl(wwv_flow.g_translated_flow_id,wwv_flow.g_flow_id)
    APP_TRANSLATION_PAGE_ID => nvl(wwv_flow.g_translated_page_id,wwv_flow.g_flow_step_id)
    APP_REGION_ID => to_char(wwv_flow_disp_page_plugs.g_region_id)
    APP_REGION_STATIC_ID => wwv_flow_disp_page_plugs.g_region_static_id
    DEBUG => YES or NO based on boolean wwv_flow.g_debug
    DISPLAY_USER => replace(nvl(htf.escape_sc(wwv_flow.g_user),user),'WEB$',null)
    REQUEST => wwv_flow.g_request
    REQUEST_STRING => replace(wwv_flow.g_request,'''','''''')
    USER => htf.escape_sc(wwv_flow.g_user)
    USER_KNOWN_AS => nvl(htf.escape_sc(wwv_flow.g_user_known_as),htf.escape_sc(wwv_flow.g_user))
    PRINTER_FRIENDLY => YES or NO based on boolean wwv_flow.g_printer_friendly
    IMAGE_PREFIX => wwv_flow.g_image_prefix
    COMPANY_IMAGES, WORKSPACE_IMAGES => wwv_flow_file_mgr.get_file?p_security_group_id=' || wwv_flow_security.g_security_group_id || '&p_fname='
    SYSDATE_YYYYMMDD => to_char(wwv_flow.g_sysdate,'YYYYMMDD')
    BROWSER_LANGUAGE => nvl(htf.escape_sc(wwv_flow.g_browser_language),'en-us')
    LOGOUT_URL => replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(
                wwv_flow.replace_cgi_env(p_in => wwv_flow.g_logout_url),
                '&SESSION.','&SESSION'),'&SESSION',wwv_flow.g_instance),
                '&FLOW_ID.','&FLOW_ID'),'&FLOW_ID',nvl(wwv_flow_security.g_flow_id,wwv_flow.g_flow_id)),
                '&APP_ID.','&APP_ID'),'&APP_ID',nvl(wwv_flow_security.g_flow_id,wwv_flow.g_flow_id)),
                '&FLOW_PAGE_ID.','&FLOW_PAGE_ID'),'&FLOW_PAGE_ID',wwv_flow.g_flow_step_id),
                '&APP_PAGE_ID.','&APP_PAGE_ID'),'&APP_PAGE_ID',wwv_flow.g_flow_step_id)
    LOGIN_URL => wwv_flow.replace_cgi_env(p_in => wwv_flow.g_login_url)
    PUBLIC_URL_PREFIX => wwv_flow.g_public_url_prefix
    AUTHENTICATED_URL_PREFIX => wwv_flow.g_dbauth_url_prefix
    PUBLIC_USER => wwv_flow.g_public_user
    AUTHENTICATION => wwv_flow.g_authentication
    POPUP_FILTER => wwv_flow.g_popup_filter
    CURRENT_PARENT_TAB_TEXT => wwv_flow.g_current_parent_tab_text
    OWNER => wwv_flow.g_flow_owner
    HOME_LINK => replace(replace(replace(wwv_flow.g_home_link,'&SESSION.',wwv_flow.g_instance),'&SESSION',wwv_flow.g_instance),'&APP_ALIAS.',wwv_flow.g_flow_alias)
    MAP1_X => wwv_flow.g_map1(1)
    MAP1_Y => wwv_flow.g_map1(2)
    MAP2_X => wwv_flow.g_map2(1)
    MAP2_Y => wwv_flow.g_map2(2)
    MAP3_X => wwv_flow.g_map3(1)
    MAP3_Y => wwv_flow.g_map3(2)
    

    If none of them are undocumented they are either obsolete or not necessarily useful.

    Scott

  • Set the focus on the list of selection in the form of the APEX

    Dear friends,
    I want to set focus on the first field of the new line of tabular presentation.
    I used something like that.

    JavaScript:AddRow();
    $('input:enabled:visible:last').focus ();

    It works fine if the first field is the text field. but when I put the selection list in the first field in tabular form, it does not work.

    Can you help me in this problem.

    Thanks in advance.

    This is because a selection list is not an input field. The html code is different, where the selector of is not picking it up.
    If you were to use

    $('select:enabled:visible:last').focus();
    

    He would choose the latest list of selection (on the page).

  • How to list the APEX users/accounts?

    How can I get all registered users in the APEX (for example fill a combo box) using the APEX APEX 4.0 authentication scheme? I see the API functions to create, remove, or get information for a specific user, but if I don't know the name or id of users I can't get them.

    Thank you
    Ander

    Ander,

    Maybe I don't understand what you mean by

    any user table

    , why wouldn't one of the views as APEX, APEX_WORKSPACE_APEX_USERS, provide the information you are looking for?

    I did the user_name APEX an attribute of my application, person_tbl, that allows me to link this table to any display user APEX necessary. -What is the direction you need to go?

    Jeff

    Published by: jwellsnh on October 22, 2010 11:12

  • Import list loses the record in the navigation menu

    Hello experts,

    I'm experimenting with more specific and APEX 5.0 component exports with export and import of lists.

    DEV, I have a list that is my navigation menu (user interface attributes > desktop > navigation menu > list of navigation menu).

    I add an entry to this list and make an export of this specific list pane only.

    In the TEST, I import this list into the same request with the same application ID and the ID workspace. The list of imports correctly and everything seems fine.

    Except that now my list is no longer my list of navigation menu. I need to change the attributes of user interface and reallocate this list as my navigation menu manually.

    Is this intentional behavior or my computer run into a problem here?

    For me, it's not intentional behaviour.

    I want to be able to update my list and there is record in the navigation menu without having to completely install my application.

    Any input/advice on that?

    Kind regards

    Bart

    Hi Bart,.

    This is a bug known, and followed with the bug # 22090477.

    Concerning

    Patrick

  • Passing parameters in the pages of the apex

    I have two selection lists on my page, is the list of countries and another for the list of airports. Both of them get their values (display and id) of the table. I want to pass the value to display the list of selected countries to the list of the airport to be used as a filter to only airports in the selected country. How do I do that? Similarly, how I pass the values of a top page to another to be used for the same purpose? I am newbie to Apex.

    Rafiq D says:

    If you ask a question APEX, always include the information referred to in these guidelines: How to get the answers from the forum

    I have two selection lists on my page, is the list of countries and another for the list of airports. Both of them get their values (display and id) of the table. I want to pass the value to display the list of selected countries to the list of the airport to be used as a filter to only airports in the selected country. How do I do that?

    Choose lists (and other controls LOV) used in this way are called 'cascading LOVs. Their use is described in the documentation.

    Define airport LOV properties items In cascade LOV article Parent (s) name of the element in the country. Reference this value in the LOV query using bind variables syntax. The Items property of the Page to send can be used to introduce other values of the child depends on LOV.

    Similarly, how I pass the values of a top page to another to be used for the same purpose? I am newbie to Apex.

    It is also covered in the documentation. URL containing ref and itemValues parameter lists may be specified or generated in the columns the report link, map series, calendar events, branches and other components of the APEX.

  • Conversion of HTML to the APEX form

    I use 5 APEX and need to replicate some features on an existing HTML (see below) form. I need to have a button on my page that will send (redirect URL with action) and pass these 3 hidden items. The item values for 'ac', and 'table' will be static, but the value 'list' should be dynamic and together (PLSQL) process. Can someone give me the best way to achieve this on the APEX page.

    "< are method ="POST"action="/admin/home.html ">

    < input type = "hidden" name = "ac" value = "buildsel" >

    < input type = "hidden" name = "table" value = "Students" >

    < input type = "hidden" name = "list" value = "1,2,3" >

    < / make >

    So, your problem is not passing the values to the homepage, but get values in the order of the day?

    There are several options, depending on your Apex page needs. For example, your article 'list' can have a "PL/SQL function body ': source

    declare

    v_return varchar2 (100);

    Start

    because loop me in 1.3

    v_return: = v_return | ',' || TO_CHAR (i);

    end loop;

    Ltrim (v_return, ',') return;

    end;

Maybe you are looking for