How to override the default styleClass for the af:query component?

In my entire application, I disabled the labels selectOneChoice and selectOneRadio using the default style class,

TD.af_selectOneChoice_label > label, td.af_selectOneRadio_label > label {}

display: none;

}

Now, for af:query component, I need to display the label. How to replace the above-mentioned styleclass? My version of jdev is 11.1.1.7.0

Try this-

AF | {selectOneChoice::label}

display: none;

}

This hides the label of choice list all except those who are inside the af: query


Ashish

Tags: Java

Similar Questions

  • How to set a default email for the reader client?

    How to set a default email for the reader client?

    [Left the forum Cloud/Installer generic for program specific forum... MOD]

    In the section in the preferences e-mail accounts.

  • How to convert the hierarchical query of SQL Server (CTE) to Oracle?

    How to convert the hierarchical query of SQL Server (CTE) to Oracle?

    WITH cte (col1, col2) AS
    (
    SELECT col1, col2
    FROM dbo. [tb1]
    WHERE col1 = 12
    UNION ALL
    SELECT c.col1, c.col2
    FROM dbo. [tb1] AS c INNER JOIN cte AS p ON c.col2 = p.col1
    )
    DELETE one
    FROM dbo. [tb1] AS an INNER JOIN b cte
    ON a.col1 = b.col1

    Hello
    Something like this maybe:

    DELETE FROM dbo.tb1 a
     WHERE EXISTS (
      SELECT 1
        FROM dbo.tb1 b
      WHERE a.co11 = b.col1
          AND a.col2 = b.col2
       START WITH b.col1 = 12
      CONNECT BY b.col2 = PRIOR b.col1)
    

    Although you need to do here is to check that CONNECT it BY SELECT, returns records you wait first, then the DELETION should work too.

  • How to set a default font for the module of titration?

    Is it possible to configure a default font for the newly added titles? Most of the Arab time Adobe is getting selected (= appear selected when I added a title) for a new caption that I doesn't make sense to me because I do not want to write in Arabic. Sometimes others (I guess random) police is being selected. I don't see any option to configure any default font.

    • What version of Premiere Elements? 13.1
    • Have you installed the latest updates? Yes
    • What operating system? Mac OSX Yosemite
    • What you were doing when the problem occurred? Adding titles
    • Tell us about your hardware: GHz Intel Core i7 Quad Core 2. The amount of RAM is installed? 16G Is how much free space on your system drive (c :))? ) 30 G
    • He has already worked before? NO.

    mpalka

    1. Menu/new/default text

    2 in the Titler that opens, type your text and apply fonts, font size, etc..

    3. Once your selected text, go to the Styles of the module of titration, make a right click any Style, select Save the Style.

    4. in the section open titration module Styles, right-click on recorded new Style thumbnail, select set default Style.

    5. conclusion of titration.

    When you reopen the titration module, then you should have the default text and attributes that you just put.

    Please let us know if it works for you.

    Thank you.

    RTA

  • How to set a default calendar for new events in the calendar on Macbook Pro

    Although I have studied this issue in forums, I'm still without resolution. New default event for the calendar of 'Calendar' in the game on my Mac of calendars even when it is initially unchecked and hidden in the calendars list.

    I don't see a place in the calendar preferences or in system preferences > iCloud to make changes. I would like new events, write in the default calendar for "Calendar" calendar in my iCloud.com account.

    Any thoughts?

    Well, here's the scoop:

    To set the default calendar, open the calendar, choose calendar > Preferences, and then click general.

    Default calendar

    The calendar where new events are added by default. If you choose "Selected calendar", then the calendar highlight in the calendar list is the default calendar.

  • How to set a default file for the recording of the work type

    Looking and looking, is there really no way to define the type of default file for the recording of the Photoshop work?

    Not save as.  After this adjustment, just use Ctrl s

    Try this:

    Make a new file

    Save as and Ctrl, click on the PNG format

    Be another file and use Ctrl s.  The Save dialog box opens and the format will always be PNG

    Use Save as, and Ctrl-click on PDF

    Make another new file and Ctrl s.  PDF will now be the format.

    Who is?

  • How to make the simple query for this scenario... ?

    Hello:

    Dummy table provided for simplicity.

    It's my database table (Table_A)

    Date1 | Plane1 | Category | Duration | Fees
    01/01/2011 | A | Gold | 5. 2
    01/01/2011 | C | Money | 4. 11
    01/01/2011 | B | Gold | 6. 2
    01/01/2011 | D | Gold | 2. 4
    01/01/2011 | B | Gold | 3. 5
    01/01/2011 | A | Money | 4. 8
    01/01/2011 | B | Gold | 1. 3

    I need to write a query to get the result below:

    Date1 | Plane1 | Sum_Duration | Sum_Charge | Sum_Gold_Duration | Sum_Gold_Charge | Sum_Silver_Duration | Sum_Silver_Charge
    01/01/2011 | A | 9. 10. 5. 2. 4. 8
    01/01/2011 | B | 10. 10. 10. 10. 0 | 0
    01/01/2011 | C | 4. 11. 0 | 0 | 4. 11
    01/01/2011 | D | 2. 4. 2. 4. 0 | 0

    This query will provide the 1st four columns:

    SELECT Date1,
    base1,
    Sum (Duration) Sum_Duration,
    Sum (load) Sum_Charge
    FROM TABLE_A
    GROUP BY date1, rarateplan

    But I need to know how to get the rest of the columns (i.e. Summary according to categories; from 5 to 8 columns)? Is this can be done in a single query without writing subqueries?

    Please let me know, (with code), the best way.

    Thank you-
    Tanvir

    Use like this:

    SELECT Date1,
    base1,
    Sum (Duration) Sum_Duration,
    Sum (load) Sum_Charge,
    SUM (decode(Category,'Gold',duration,0)) Sum_Gold_Duration,
    SUM (decode(Category,'Gold',charge,0)) Sum_Gold_charge,
    SUM (decode(Category,'Silver',duration,0)) Sum_Silver_Duration,
    SUM (decode(Category,'Silver',charge,0)) Sum_Silver_charge
    FROM TABLE_A
    GROUP BY date1, rarateplan

    Published by: SANT007 on August 11, 2011 11:04

  • How to write the select query for it

    Hello

    I had an html form and the area I drop down and he needs to select several values in the drop-down box. When I select multiple values then I have to write the query to SQL select statement.

    When I try to write the select statement and trying to run I get the error message.

    Select * from Table

    where emo_no = '1,2,3 '.

    That's how I write the query please suggest me how to write the query to select several values in the drop-down box.

    Thank you

    Use the keyword sql 'in '.  If you don't know how, I've heard good things about the book Teach Yourself SQL in 10 Minutes by Ben Forta.

  • How to optimize the select query executed in a cursor for loop?

    Hi friends,

    I run the code below and clocked at the same time for each line of code using DBMS_PROFILER.
    CREATE OR REPLACE PROCEDURE TEST
    AS
       p_file_id              NUMBER                                   := 151;
       v_shipper_ind          ah_item.shipper_ind%TYPE;
       v_sales_reserve_ind    ah_item.special_sales_reserve_ind%TYPE;
       v_location_indicator   ah_item.exe_location_ind%TYPE;
    
       CURSOR activity_c
       IS
          SELECT *
            FROM ah_activity_internal
           WHERE status_id = 30
             AND file_id = p_file_id;
    BEGIN
       DBMS_PROFILER.start_profiler ('TEST');
    
       FOR rec IN activity_c
       LOOP
          SELECT DISTINCT shipper_ind, special_sales_reserve_ind, exe_location_ind
                     INTO v_shipper_ind, v_sales_reserve_ind, v_location_indicator
                     FROM ah_item --464000 rows in this table
                    WHERE item_id_edw IN (
                             SELECT item_id_edw
                               FROM ah_item_xref --700000 rows in this table
                              WHERE item_code_cust = rec.item_code_cust
                                AND facility_num IN (
                                       SELECT facility_code
                                         FROM ah_chain_div_facility --17 rows in this table
                                        WHERE chain_id = ah_internal_data_pkg.get_chain_id (p_file_id)
                                          AND div_id = (SELECT div_id
                                                          FROM ah_div --8 rows in this table 
                                                         WHERE division = rec.division)));
       END LOOP;
    
       DBMS_PROFILER.stop_profiler;
    EXCEPTION
       WHEN NO_DATA_FOUND
       THEN
          NULL;
       WHEN TOO_MANY_ROWS
       THEN
          NULL;
    END TEST;
    The SELECT inside the LOOP FOR cursor query took 773 seconds.
    I tried to use COLLECT in BULK instead of a cursor for loop, but it did not help.
    When I took the select query separately and executed with a value of the sample, and then he gave the results in a Flash of a second.

    All tables have primary key index.
    Any ideas what can be done to make this code more efficient?

    Thank you
    Raj.
    DECLARE
      v_chain_id ah_chain_div_facility.chain_id%TYPE := ah_internal_data_pkg.get_chain_id (p_file_id);
    
      CURSOR cur_loop IS
      SELECT * -- better off explicitly specifying columns
      FROM ah_activity_internal aai,
      (SELECT DISTINCT aix.item_code_cust, ad.division, ai.shipper_ind, ai.special_sales_reserve_ind, ai.exe_location_ind
         INTO v_shipper_ind, v_sales_reserve_ind, v_location_indicator
         FROM ah_item ai, ah_item_xref aix, ah_chain_div_facility acdf, ah_div ad
        WHERE ai.item_id_edw = aix.item_id_edw
          AND aix.facility_num = acdf.facility_code
          AND acdf.chain_id = v_chain_id
          AND acdf.div_id = ad.div_id) d
      WHERE aai.status_id = 30
        AND aai.file_id = p_file_id
        AND d.item_code_cust = aai.item_code_cust
        AND d.division = aai.division;         
    
    BEGIN
      FOR rec IN cur_loop LOOP
        ... DO your stuff ...
      END LOOP;
    END;  
    

    Published by: Dave hemming on December 4, 2008 09:17

  • How to use my default format for my signature settings also

    Hi all

    Please explain how can I use my settings to default format for my signature, too.

    For Ex:

    I use times police with 12'. I want to use the same settings of my signature so police.

    Kind regards
    Siva.

    You can include html code in the Signature text formatting. An option is to learn the desired code and enter it by hand.

    However, I would suggest you start a new message and compose your signature as if you were writing an e-mail message, but save it as an HTML file. In the account settings, you can refer to this file to provide your signature.

    If you need multiple signatures, I suggest that you look at the Signature Switch addon that allows you to select a signature file when sending.

    A useful feature of Signature Switch is that it allows you to include variants of html text and the pain of your signature. In general, there is also rude to answer a message composed in plain text with a response using HTML. Your correspondent has indicated implicitly that he prefers plain text.

    GIYF: https://support.mozilla.org/en-US/kb/signatures

  • How to set a default view for 'Open' and ' Save as '.

    I am running Windows XP, Service Pack 3.  I want to set a default view for the windows 'OPEN' and 'SAVE AS' sort by 'Name' of A--> Z.  How can I do?

    Hello

    I suggest you to follow these steps and check if that helps:

    a. right-click in the folder.

    b. click the name to sort by alphabetical order.

    You can also click on the name of the list view to sort the files alphabetically.

  • How to create your default desktop for all / some users?

    Using Vista business I want to create a desktop computer by default for all users. How can I do this?

    I have a machine that has a dozen accounts. Can I retroactively apply this desktop computer to some existing accounts?

    Thanks for thehlp

    Joe

    Discussions on the topic "Change the profile by default in Vista"
    http://social.technet.Microsoft.com/forums/en-us/itprovistasetup/thread/62ed66ad-71cd-43C3-83c0-5303d77176b8/
    by Heather

    "How to make a standard profile w / user by default.
    http://forums.techarena.in/Vista-Help/1065679.htm
    by Darrell Gorter [MSFT]

    How to create the default profile for Vista
    http://help.Lockergnome.com/Vista/create-Vista-default-profile--ftopict15825.html
    Darell Gorter mentioned here only taken methods supported to change the default user profile:
    "How to customize the local default user profile when you prepare a
    image of Windows Vista, Windows Server 2008, Windows XP, or Windows Server 2003"
    http://support.Microsoft.com/default.aspx?scid=KB; EN-US; 959753
    but when you go on the link says the Tip system is not for Vista, on Windows Vista title is missing.

    I hope I could help

  • How can I configure default Photoshop for always "appropriate scale of media" when you print?

    How can I configure default Photoshop to "Appropriate scale of media" when printing .pdf?

    I recorded a video showing how to make the action: How To: make Photoshop Actions for printing - YouTube. Please give YouTube a while to finish the HD treatment.

    Once your action is created, simply select it and press the play button to run it.

    Benjamin

  • How to get the sql query result?

    Hello

    Currently I use LV2012 to connect to an Oracle database server. After the Oracle Express and Oracle ODBC driver facilities/settings made.

    I managed to use the SQL command to query the data through my command prompt window.

    Now the problem is, how to do the same task in Labview using database connectivity tools?

    I have build a VI to query as being attached, but I have no idea of what range to use to get the result of the query.

    Please help me ~ ~

    Here is a piece of code that I use to test the SQL commands, you can use the part that retrieves the results of sql.

    It is also possible to get the rear column headers, but it's for the next lesson!

    ;-)

  • How to associate a default program for files without extension?

    I work with files of Linux a lot on my Windows 7, and it does not give me an option to associate a program with files without extensions. For example, I'm going to open a file called "config" and Windows prompts me to choose a program to open it with, but "Always use the selected program to open this kind of file" is greyed out. Since I use a third-party editor (Notepad ++) which analyzes correctly Linux line breaks, I want files with extensions not always open with this program. Is it still possible?

    Hello

    Check if the article helps you.

    NEWS: Shell Extensions for file without file extension names
    http://support.Microsoft.com/kb/236014

    Registry warning
    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    How to back up and restore the registry in Windows
    http://support.Microsoft.com/kb/322756/

Maybe you are looking for

  • my Apple Watch lock?

    HI ibuy a Apple Watch used but its loked?

  • Ring of the exercise went haywire

    for two weeks, the exercise on my Apple Watch ring was very erratic, count the exercise that I did not just not... I also noticed that the movement has stopped ring inscription calories as it used to? I thought to reset, but don't want to lose all th

  • HARD drive external 250GB PX1266E - 1 25

    When I connect my HARD drive (Toshiba PX1266E - 1 25 250GB external HARD drive) to my computer that has USB 2.0, I get a message that the device could work faster when I connect it to a USB 2.0 port. The fact is that it * is * connected to a usb 2.0

  • Windows 7 clean installation Blue Screen of Death (BSoD) on a loop of reboot

    Aloha everyone,I did an install customized windows 7 on a new Western Digital 1 TB sata hard drive, which has been formatted, partitioned, scandisk, and a ntfs c drive was created prior to installation.The installation ended safely.  I then install m

  • Blue screen with error code * STOP: OX000000F4 (OX00000003, OX8A30X, 8A30F2680

    I get this error blue screen frequently on the pc, the problem occurs intermittently. There is no point. Please help me solve the problem and what is its cause. "THE PROBLEM HAS BEEN DETECTED AND WINDOWS IS SHUT DOWN TO PREVENT YOUR COMPUTER."A SYS O