Counting of the af. question af | panelcollection components-specific elements

Hi all

I'm working on Jdev version 12.1.3

I can style 2 buttons differently very easily by creating 2 separate style class and do it in style.


Now the challenge is, I have a requirement I mean the skin a specific button: 'Reset' and 'Search' separately in af | query: How do I achieve this?

queryComponentSkinning.png

How do we get grip on af | query: subcomponents?

The same challenge in panelcollection: button off (if I need to change the icon color, text and stationary by default)


Pointers?

Thank you

Sumit

Hello

See this post:

AF:query css customization

Kind regards

Ruben

Tags: Java

Similar Questions

  • Additive and Non-additive measures (Distinct Count) in the same Cube

    I am aware that you can create a cube with a single non-additive measure (distinct count) as explained in this article:

    https://www.Google.co.UK/URL?SA=t & rct = j & q = & esrc = s & source = web & cd = 3 & cad = AJLN & uact = 8 & ved = 0CDkQFjACahUKEwiFpJ3K0MnHAhXFbB4KHfH7BfU & url = http %3 has % 2F % www.vlamis.com%2Fstorage%2Fpapers%2F2013_732_claterbos_ppr.pdf 2F & ei = nDPfVYXmIMXZefH3l6gP and usg AFQjCNF6fSAuRqaRGR-nIAGOM9fEY08j7A

    However, my requirement is to have additive and not additive in the same cube, measures, as you can do with cubes MSAS.

    Is this possible with Oracle OLAP cubes?

    I see you mentioned you want to make in the same cube. What is a difficult requirement?

    If this isn't the case, you may want to explore using 2 cubes where the first cube do distinct count. The second

    cube can have your aggregation you want and a calculated measure that references the first cube

    kinda like a cube considered. The OLAP option did a good job supporting cubes and multiple clients

    set up what is called the cubes that reference other cubes of the basis of the declaration. The SQL code that question that the cubes can view (s)

    be attached so that you can select a plan of several cubes SQL query in a single query.

  • Copy to check the knowledge of the questions to the Quiz questions classified

    Adobe captivate 9

    I'm working on a project that the owner wishes to question to check knowledge 5 or more not classified after each of the 5 sections of the training.  At the end of the training, the owner wishes to rank issue.  I'm trying to find out if there is a way for me to simply copy the instead of recreating for the verification of knowledge (not rank) and again graded questions.  Any ideas?

    I'm afraid that no, there features built in and as you can see differences in the properties of Quiz Panel (you don't score, penalty, partial for KC slides, they are not counted in the Quiz system variables). You will need to recreate the KC questions from scratch, not the normal questions.

  • Use FOR... LOOP counter in the treatment of PL/SQL procedures with nest. Table

    Hi all!
    I learn PL/SQL on the book by Steve Bobrovsky (specified below, sample comes from it) and I have a question.

    In the procedure of the below specified program used a currentElement integer variable to get the reference to the line in the nested table of data type % ROWTYPE.
    Meanwhile, the program itself uses a common FOR... LOOP counter I have.
    DECLARE
     TYPE partsTable IS TABLE OF parts%ROWTYPE;
     tempParts partsTable := partsTable();
     CURSOR selectedParts IS 
      SELECT * FROM parts ORDER BY id;
     currentPart selectedParts%ROWTYPE;
     currentElement INTEGER;
     PROCEDURE printParts(p_title IN VARCHAR2, p_collection IN partsTable) IS
      BEGIN
       DBMS_OUTPUT.PUT_LINE(' ');
       DBMS_OUTPUT.PUT_LINE(p_title || ' elements: ' || p_collection.COUNT);
       currentElement := p_collection.FIRST;
       FOR i IN 1 .. p_collection.COUNT
       LOOP
        DBMS_OUTPUT.PUT('Element #' || currentElement || ' is ');
         IF tempParts(currentElement).id IS NULL THEN DBMS_OUTPUT.PUT_LINE('an empty element.');
         ELSE DBMS_OUTPUT.PUT_LINE('ID: ' || tempParts(currentElement).id || ' DESCRIPTION: ' || tempParts(currentElement).description);
         END IF;
        currentElement := p_collection.NEXT(currentElement);
       END LOOP;
     END printParts;
    BEGIN
     FOR currentPart IN selectedParts
     LOOP
      tempParts.EXTEND(2);
      tempParts(tempParts.LAST) := currentPart;
     END LOOP;
     printParts('Densely populated', tempParts);
     FOR i IN 1 .. tempParts.COUNT
     LOOP
      IF tempParts(i).id is NULL THEN tempParts.DELETE(i);
      END IF;
     END LOOP;
     FOR i IN 1 .. 50
     LOOP
      DBMS_OUTPUT.PUT('-');
     END LOOP;
     printParts('Sparsely populated', tempParts);
    END;
    /
    When I substituted a global variable of INTEGER type such for... The LOOP counter, an APEX have returned an error "ORA-01403: no data found.
    DECLARE
     TYPE partsTable IS TABLE OF parts%ROWTYPE;
     tempParts partsTable := partsTable();
     CURSOR selectedParts IS 
      SELECT * FROM parts ORDER BY id;
     currentPart selectedParts%ROWTYPE;
     PROCEDURE printParts(p_title IN VARCHAR2, p_collection IN partsTable) IS
      BEGIN
       DBMS_OUTPUT.PUT_LINE(' ');
       DBMS_OUTPUT.PUT_LINE(p_title || ' elements: ' || p_collection.COUNT);
       FOR i IN 1 .. p_collection.COUNT
       LOOP
        DBMS_OUTPUT.PUT('Element is ');
         IF tempParts(i).id IS NULL THEN DBMS_OUTPUT.PUT_LINE('an empty element.');
         ELSE DBMS_OUTPUT.PUT_LINE('ID: ' || tempParts(i).id || ' DESCRIPTION: ' || tempParts(i).description);
         END IF;
       END LOOP;
     END printParts;
    BEGIN
     FOR currentPart IN selectedParts
     LOOP
      tempParts.EXTEND(2);
      tempParts(tempParts.LAST) := currentPart;
     END LOOP;
     printParts('Densely populated', tempParts);
     FOR i IN 1 .. tempParts.COUNT
     LOOP
      IF tempParts(i).id is NULL THEN tempParts.DELETE(i);
      END IF;
     END LOOP;
     FOR i IN 1 .. 50
     LOOP
      DBMS_OUTPUT.PUT('-');
     END LOOP;
     printParts('Sparsely populated', tempParts);
    END;
    /
    When I tried to manage this code in SQL * Plus, the following picture emerged:
    Densely populated elements: 10
    Element is an empty element.
    Element is ID: 1 DESCRIPTION: Fax Machine
    Element is an empty element.
    Element is ID: 2 DESCRIPTION: Copy Machine
    Element is an empty element.
    Element is ID: 3 DESCRIPTION: Laptop PC
    Element is an empty element.
    Element is ID: 4 DESCRIPTION: Desktop PC
    Element is an empty element.
    Element is ID: 5 DESCRIPTION: Scanner
    --------------------------------------------------
    Sparsely populated elements: 5
    DECLARE
    *                                                 
    ERROR at line 1:                                  
    ORA-01403: no data found                          
    ORA-06512: at line 14                             
    ORA-06512: at line 35
    What's not in the code (or what I did not understand)? Help please!

    Your error occurs because you are dealing with a sparsely populated collection and using an index for items that do not exist.

    For collections of the low density of population, you must iterate through using FIRST and THEN as modeled not from 1 to COUNT.

    The crucial difference between your code and the example is:

    tempParts(i)
    

    Which, as you have demonstrated, doesn't work very well (!) if there is no item (i).

    The code example is a little unusual in my opinion.

       currentElement := p_collection.FIRST;
       FOR i IN 1 .. p_collection.COUNT
       LOOP
        ...
        currentElement := p_collection.NEXT(currentElement);
       END LOOP;
    

    It works, but it's an unusual way to iterate through a collection of rare which is perhaps most often done like this:

       currentElement := p_collection.FIRST;
       WHILE(currentElement IS NOT NULL)
       LOOP
        ...
        currentElement := p_collection.NEXT(currentElement);
       END LOOP;
    

    Which is perhaps less open to confusion.

    In the end, the distinction between

    tempParts(currentElement).id
    

    and

    tempParts(i).id
    

    is crucial.

  • Count (*) with the nested query

    Hello
    I have a question about the count (*) with the nested query.

    I have a table T1 with these columns:
    Number of C1
    Number of C2
    Number of C3
    Number of C4
    Number of C5

    (The type of each column is not relevant for example).

    This query:
    Select C1, C2, C3, C4
    from T1
    Group C1, C2

    It is not correct becausa C3 and C4 are the columns specified in the GROUP BY expression.

    If you run this query:
    Select count (*)
    (select C1, C2, C3, C4
    from T1
    Group C1, C2)

    I don't have an error message (properly, the result is the number of records).

    Why?

    Thank you.

    Best regards
    Luca

    because the optimizer rewrites as

    SELECT     COUNT(*)
                  FROM   T1
              GROUP BY   C1, C2  
    

    G.

    Edited by: g. March 1, 2011 09:19

  • I can't reset the security questions. We received notice as below:

    Hello world

    I can't reset the security questions. We received notice as below:

    "Cannot reset Security Questions."

    We have insufficient information to reset your security questions. "

    Please help me as soon as possible! Thank you very much.

    Hello

    You will need to contact the Apple Support.

    The information is available here:

    Contact Apple for assistance with the security of the Apple ID - Apple Support accounts

    (I'm afraid that no one here can solve the problem for you - this is a user-based community).

  • Disable the persistent question in CSA banner.

    Hot off the presses.

    Transform it.

    In this.

    Go to your preferences page and disable the persistent Question button.

    This link will take you to your preferences page.

    https://discussions.Apple.com/user-preferences! input.jspa

    Starting to stuff...

    Keep up the good work AppleJiveTeam!

  • I forgot my answer to the security question, now I want to change my answer and to change their application asks me for my old answer which I forgot how can I change my answer to my security questions

    I forgot my answer to the security question, now I want to change my answer and to change their application asks me for my old answer which I forgot how can I change my answer to my security questions

    When I had the same problem, I used the solutions here If you have forgotten the answers to the security of your questions - Apple Support Apple ID

  • НЕ МОГУ СБРОСИТЬ СЕКРЕТНЫЕ ВОПРОСЫ.  I can't reset the security questions.

    НЕ МОГУ СБРОСИТЬ СЕКРЕТНЫЕ ВОПРОСЫ. ДЕЛАЮ ВСЕ ПО ИНСТРУКЦИИ В ИТОГЕ ВЫХОДИТ: 'НЕДОСТАТОЧНО ИНФОРМАЦИИ ДЛЯ СБРОСА КОНТРОЛЬНЫХ ВОПРОСОВ' КАРТОЧКА ПРИВЯЗАНА ДЕЛАЛ ПОКУПКИ. ПОМОГИТЕ МОГУ ПРЕДОСТАВИТЬ ВСЮ ИНФОРМАЦИЮ.
    I can't reset the security questions. Do all that goes the instructions at the end: "not enough information to restore security" map is shopping. Help can provide all the information.
    -СТРАНА УКРАИНА ПОЭТОМУ И НЕ МОГУ ОБРАТИТЬСЯ В ПОДДЕРЖКУ-
    -LANDS OF UKRAINE AND CAN THEREFORE NOT APPLY TO THE SUPPORT.

    Did you follow this instruction? If you forgot your Apple ID - Apple Support security questions answered

  • I would like to change my password but I don't remember the answer to the secret questions.

    I would like to change my password but I don't remember the answer to the secret questions.

    What can I do?

    < re-titled by host >

    Go to https://getsupport.apple.com . Click on "see all of the products and services ', then 'More', then 'Apple ID', then 'other Apple ID subjects' then 'security issues forgotten Apple ID". If you have problems with this test of this form: https://www.apple.com/emea/support/itunes/contact.html

    When you have a question, it is better to give a brief summary under the title of your thread. 'Hi' tells us nothing; a forgotten informative (for example "security questions") title is likely to get you a faster response.

  • I want to change the secret question. Can someone help me? TQVM

    I want to change the secret question. Can someone help me? TQVM

    Security issues Apple - ID

    Account security issues almost always require directly contact a representative from Apple to firmly establish your identity as the account holder. You can configure so that Apple you call, either immediately or at a time convenient to you.

    1. go to http://www.apple.com/support/appleid/

    2 choose to contact Support, then click on contact Support

    3. choose other subjects of Apple ID and choose the appropriate topic for your question (questions of security or password)

    4. choose, no thanks, continue

    5. choose the best method for you to contact Apple

    By the end of 2012 Mac minis, macOS?  Watch, 38 mm silver AL, Watch BONES 2.2.2; iPad 2 Air & iPhone 6 + iOS?  Apple Airport Express

  • Update resulted today in count of the number of messages in different folders disappear, except new

    I was asked to update to Thunderbird and did, when I came back later in the afternoon, the messages were always in each folder (sent for example), but the count of the number of messages in each category had disappeared.

    What about the small thing square on the line with the name above the part of the file. He has options for/unread and size

  • Forgot to answer to the security question

    I did all the necessary means to reset the answer to the security question, it seems that my country (Nigeria) is not supported. .Please help me...

    Click here and complete the form. Include a note that your country is not listed in the HT204169 article.

    (143693)

  • Have been left in charge all night I get the message "after reboot requires the password" question is why is this automatic restart, and is this normal

    Have been left in charge all night I get the message "after reboot requires the password" question is why is this automatic restart, and is this normal

    Occasionally, it may restart because something was wrong. It is not a problem unless this happens frequently.

  • How do I change the security questions?

    How do I change the security questions?

    Hello

    If you set an alternate e-mail address, you can reset your security questions. Follow the instructions here to check if this option is available:

    Otherwise, you will need to contact the Apple Support. The information is available here:

    (I'm afraid that no one here can solve the problem for you.) You don't talk to Apple here - it is a community based on the user).

Maybe you are looking for

  • How to disable authentication for move files

    Whenever I move a file to my external hard drive, I get a popup to authenticate the move and I have to enter my computer pw. I looked in system preferences > Security & privacy but can't find a place that transforms this authentication on / off. How

  • How can I find a version of fire FTP running on 3.6

    I upgraded to FF4 and it is locked up on my Vista desktop. Unfortunately, fire FTP also had upgraded to the version that is compatible with 4, and now I can't find the fire FTP version which is compatible with 3.6 which I returned to. I need this uti

  • WiDi

    Re Yoga 2Pro: is the WiDi feature standard on all units of 256 / 8 gb/i7?

  • Search for the text value data store

    Hello, I have a PDO of data to store, and I would like to search for a text value in a quantity of measure.  In each of my test series, there is a quantity of measure with the name TCNAME and stores the cell name of test in the string format.  I woul

  • Control chain / led of maximum length (FIFO)

    Hello all; It is perhaps a silly question (maybe not)... How works only once on the definition of the length of a string such that the characters forward file when the maximum number has been reached and there is more incoming data?  For example, I w